2003-02-01 09:49:15 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| Copyright (c) 1998-2004 Zend Technologies Ltd. (http://www.zend.com) |
|
2003-02-01 09:49:15 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2003-02-01 09:49:15 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2000-10-30 02:26:21 +08:00
|
|
|
#ifndef _ZEND_INI_SCANNER_H
|
|
|
|
#define _ZEND_INI_SCANNER_H
|
|
|
|
|
2000-10-30 06:40:01 +08:00
|
|
|
BEGIN_EXTERN_C()
|
2001-07-30 12:54:16 +08:00
|
|
|
int zend_ini_scanner_get_lineno(TSRMLS_D);
|
2001-07-31 14:07:25 +08:00
|
|
|
char *zend_ini_scanner_get_filename(TSRMLS_D);
|
|
|
|
int zend_ini_open_file_for_scanning(zend_file_handle *fh TSRMLS_DC);
|
|
|
|
void zend_ini_close_file(zend_file_handle *fh TSRMLS_DC);
|
2001-08-06 21:48:51 +08:00
|
|
|
int ini_lex(zval *ini_lval TSRMLS_DC);
|
2000-10-30 06:40:01 +08:00
|
|
|
END_EXTERN_C()
|
2000-10-30 02:26:21 +08:00
|
|
|
|
2000-11-03 16:39:39 +08:00
|
|
|
#endif /* _ZEND_INI_SCANNER_H */
|
2003-02-01 09:49:15 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|