rrichards               Wed Nov 15 12:27:32 2006 UTC

  Modified files:              
    /php-src/ext/xml    xml.c 
  Log:
  mark more functions unicode compatible
  
http://cvs.php.net/viewvc.cgi/php-src/ext/xml/xml.c?r1=1.168&r2=1.169&diff_format=u
Index: php-src/ext/xml/xml.c
diff -u php-src/ext/xml/xml.c:1.168 php-src/ext/xml/xml.c:1.169
--- php-src/ext/xml/xml.c:1.168 Wed Nov 15 12:08:12 2006
+++ php-src/ext/xml/xml.c       Wed Nov 15 12:27:32 2006
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: xml.c,v 1.168 2006/11/15 12:08:12 rrichards Exp $ */
+/* $Id: xml.c,v 1.169 2006/11/15 12:27:32 rrichards Exp $ */
 
 #define IS_EXT_MODULE
 
@@ -1231,7 +1231,7 @@
 }
 /* }}} */
 
-/* {{{ proto int xml_set_element_handler(resource parser, string shdl, string 
ehdl) 
+/* {{{ proto int xml_set_element_handler(resource parser, string shdl, string 
ehdl) U
    Set up start and end element handlers */
 PHP_FUNCTION(xml_set_element_handler)
 {
@@ -1252,7 +1252,7 @@
 }
 /* }}} */
 
-/* {{{ proto int xml_set_character_data_handler(resource parser, string hdl) 
+/* {{{ proto int xml_set_character_data_handler(resource parser, string hdl) U
    Set up character data handler */
 PHP_FUNCTION(xml_set_character_data_handler)
 {
@@ -1271,7 +1271,7 @@
 }
 /* }}} */
 
-/* {{{ proto int xml_set_processing_instruction_handler(resource parser, 
string hdl) 
+/* {{{ proto int xml_set_processing_instruction_handler(resource parser, 
string hdl) U
    Set up processing instruction (PI) handler */
 PHP_FUNCTION(xml_set_processing_instruction_handler)
 {
@@ -1290,7 +1290,7 @@
 }
 /* }}} */
 
-/* {{{ proto int xml_set_default_handler(resource parser, string hdl) 
+/* {{{ proto int xml_set_default_handler(resource parser, string hdl) U
    Set up default handler */
 PHP_FUNCTION(xml_set_default_handler)
 {
@@ -1308,7 +1308,7 @@
 }
 /* }}} */
 
-/* {{{ proto int xml_set_unparsed_entity_decl_handler(resource parser, string 
hdl) 
+/* {{{ proto int xml_set_unparsed_entity_decl_handler(resource parser, string 
hdl) U
    Set up unparsed entity declaration handler */
 PHP_FUNCTION(xml_set_unparsed_entity_decl_handler)
 {
@@ -1327,7 +1327,7 @@
 }
 /* }}} */
 
-/* {{{ proto int xml_set_notation_decl_handler(resource parser, string hdl) 
+/* {{{ proto int xml_set_notation_decl_handler(resource parser, string hdl) U
    Set up notation declaration handler */
 PHP_FUNCTION(xml_set_notation_decl_handler)
 {
@@ -1345,7 +1345,7 @@
 }
 /* }}} */
 
-/* {{{ proto int xml_set_external_entity_ref_handler(resource parser, string 
hdl) 
+/* {{{ proto int xml_set_external_entity_ref_handler(resource parser, string 
hdl) U
    Set up external entity reference handler */
 PHP_FUNCTION(xml_set_external_entity_ref_handler)
 {
@@ -1363,7 +1363,7 @@
 }
 /* }}} */
 
-/* {{{ proto int xml_set_start_namespace_decl_handler(resource parser, string 
hdl) 
+/* {{{ proto int xml_set_start_namespace_decl_handler(resource parser, string 
hdl) U
    Set up character data handler */
 PHP_FUNCTION(xml_set_start_namespace_decl_handler)
 {
@@ -1382,7 +1382,7 @@
 }
 /* }}} */
 
-/* {{{ proto int xml_set_end_namespace_decl_handler(resource parser, string 
hdl) 
+/* {{{ proto int xml_set_end_namespace_decl_handler(resource parser, string 
hdl) U
    Set up character data handler */
 PHP_FUNCTION(xml_set_end_namespace_decl_handler)
 {
@@ -1658,7 +1658,7 @@
 }
 /* }}} */
 
-/* {{{ proto string utf8_encode(string data) 
+/* {{{ proto string utf8_encode(string data) U
    Encodes an ISO-8859-1 string to UTF-8 */
 PHP_FUNCTION(utf8_encode)
 {
@@ -1690,7 +1690,7 @@
 }
 /* }}} */
 
-/* {{{ proto string utf8_decode(string data) 
+/* {{{ proto string utf8_decode(string data) U
    Converts a UTF-8 encoded string to ISO-8859-1 */
 PHP_FUNCTION(utf8_decode)
 {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to