diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2001-06-05 13:12:10 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2001-06-05 13:12:10 +0000 |
commit | 25c3a3a39d7aebdce95825e6af2ad8c62905b7cc (patch) | |
tree | 4d8f1ff9644c880e3b7a63a361a0db2280d8058f /ext/xml/xml.c | |
parent | 4efe6f7e6b53496fb1c4f6990b3ad0771bd9be67 (diff) | |
download | php-git-25c3a3a39d7aebdce95825e6af2ad8c62905b7cc.tar.gz |
vim-6 does folding - clean up a bunch of missing folding tags plus
some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
Diffstat (limited to 'ext/xml/xml.c')
-rw-r--r-- | ext/xml/xml.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/xml/xml.c b/ext/xml/xml.c index d5e3bad988..b3d2ff28ea 100644 --- a/ext/xml/xml.c +++ b/ext/xml/xml.c @@ -236,7 +236,7 @@ PHP_MINFO_FUNCTION(xml) php_info_print_table_row(2, "EXPAT Version",XML_ExpatVersion()); php_info_print_table_end(); } - +/* }}} */ /* {{{ extension-internal functions */ @@ -991,7 +991,6 @@ _xml_externalEntityRefHandler(XML_Parser parserPtr, } /* }}} */ - /* {{{ _xml_startNamespaceDeclHandler() */ void _xml_startNamespaceDeclHandler(void *userData, @@ -1014,7 +1013,6 @@ void _xml_startNamespaceDeclHandler(void *userData, } /* }}} */ - /* {{{ _xml_endNamespaceDeclHandler() */ void _xml_endNamespaceDeclHandler(void *userData, @@ -1318,7 +1316,6 @@ PHP_FUNCTION(xml_set_external_entity_ref_handler) } /* }}} */ - /* {{{ proto int xml_set_start_namespace_decl_handler(int pind, string hdl) Set up character data handler */ PHP_FUNCTION(xml_set_start_namespace_decl_handler) @@ -1385,6 +1382,7 @@ PHP_FUNCTION(xml_parse) } /* }}} */ + /* {{{ proto int xml_parse_into_struct(int pind, string data, array &struct, array &index) Parsing a XML document */ @@ -1654,4 +1652,5 @@ PHP_FUNCTION(utf8_decode) * tab-width: 4 * c-basic-offset: 4 * End: + * vim: sw=4 ts=4 tw=78 fdm=marker */ |