diff options
| author | Zeev Suraski <zeev@php.net> | 2000-10-29 18:26:21 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2000-10-29 18:26:21 +0000 |
| commit | f3243082a311a3b2602f79f479f78f8b9fa91b2c (patch) | |
| tree | 9ed9c5b87e59077ab8e683262ebbdf525014ccd0 | |
| parent | 6b4c369164e638afcc916a3d6693547a1d5140a8 (diff) | |
| download | php-git-f3243082a311a3b2602f79f479f78f8b9fa91b2c.tar.gz | |
Forgot this one
| -rw-r--r-- | Zend/zend_ini_scanner.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Zend/zend_ini_scanner.h b/Zend/zend_ini_scanner.h new file mode 100644 index 0000000000..9a97f267f6 --- /dev/null +++ b/Zend/zend_ini_scanner.h @@ -0,0 +1,16 @@ +#ifndef _ZEND_INI_SCANNER_H +#define _ZEND_INI_SCANNER_H + +#if defined(ZTS) && defined(__cplusplus) +class ZendIniFlexLexer : public yyFlexLexer +{ +public: + virtual ~ZendIniFlexLexer(); + int lex_scan(zval *zendlval); + void BeginState(int state); +}; +#endif /* ZTS && __cplusplus */ + +int zend_ini_scanner_get_lineno(); + +#endif /* _ZEND_INI_SCANNER_H */
\ No newline at end of file |
