diff options
| -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 |
