diff options
author | Egon Schmid <eschmid@php.net> | 2000-02-24 14:43:53 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-02-24 14:43:53 +0000 |
commit | c07b5282af83c8bb3c1fe770c6f35cd64cfcb474 (patch) | |
tree | f99f230b908e1451e9c64c91b960976ee3c918b9 /ext/xml | |
parent | 2b9b11d3af416c3619cc7527bf192c5f6df46124 (diff) | |
download | php-git-c07b5282af83c8bb3c1fe770c6f35cd64cfcb474.tar.gz |
More protos.
Diffstat (limited to 'ext/xml')
-rw-r--r-- | ext/xml/xml.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ext/xml/xml.c b/ext/xml/xml.c index e4de960c34..5c274acf49 100644 --- a/ext/xml/xml.c +++ b/ext/xml/xml.c @@ -974,7 +974,7 @@ _xml_externalEntityRefHandler(XML_Parser parserPtr, /************************* EXTENSION FUNCTIONS *************************/ -/* {{{ proto int xml_parser_create() +/* {{{ proto int xml_parser_create(void) Create an XML parser */ PHP_FUNCTION(xml_parser_create) { @@ -1197,7 +1197,7 @@ PHP_FUNCTION(xml_set_external_entity_ref_handler) } /* }}} */ -/* {{{ proto int xml_parse(int pind, string data[, int isFinal]) +/* {{{ proto int xml_parse(int pind, string data [, int isFinal]) Start parsing an XML document */ PHP_FUNCTION(xml_parse) { @@ -1225,7 +1225,7 @@ PHP_FUNCTION(xml_parse) } /* }}} */ -/* {{{ proto int xml_parse_into_struct(int pind, string data,array &struct,array &index) +/* {{{ proto int xml_parse_into_struct(int pind, string data, array &struct, array &index) Parsing a XML document */ PHP_FUNCTION(xml_parse_into_struct) @@ -1324,8 +1324,7 @@ PHP_FUNCTION(xml_get_current_line_number) /* }}} */ /* {{{ proto int xml_get_current_column_number(int pind) - Get current column number for an XML parser -*/ + Get current column number for an XML parser */ PHP_FUNCTION(xml_get_current_column_number) { xml_parser *parser; |