andrei Thu Sep 21 19:30:33 2006 UTC Modified files: /php-src/ext/unicode transform.c unicode.c Log: Fix protos. http://cvs.php.net/viewvc.cgi/php-src/ext/unicode/transform.c?r1=1.5&r2=1.6&diff_format=u Index: php-src/ext/unicode/transform.c diff -u php-src/ext/unicode/transform.c:1.5 php-src/ext/unicode/transform.c:1.6 --- php-src/ext/unicode/transform.c:1.5 Wed Sep 20 23:44:23 2006 +++ php-src/ext/unicode/transform.c Thu Sep 21 19:30:33 2006 @@ -14,12 +14,12 @@ +----------------------------------------------------------------------+ */ -/* $Id: transform.c,v 1.5 2006/09/20 23:44:23 pollita Exp $ */ +/* $Id: transform.c,v 1.6 2006/09/21 19:30:33 andrei Exp $ */ #include "php_unicode.h" -/* {{{ proto string str_transliterate(string str, string from, string to[, string variant]) U -Transliterate a string using the alphabet provided */ +/* {{{ proto string str_transliterate(string str, string from_script, string to_script[, string variant]) U + Transliterate a string from the source script to the target script */ PHP_FUNCTION(str_transliterate) { UChar *str, *from, *to, *variant = NULL; http://cvs.php.net/viewvc.cgi/php-src/ext/unicode/unicode.c?r1=1.41&r2=1.42&diff_format=u Index: php-src/ext/unicode/unicode.c diff -u php-src/ext/unicode/unicode.c:1.41 php-src/ext/unicode/unicode.c:1.42 --- php-src/ext/unicode/unicode.c:1.41 Wed Sep 20 23:44:23 2006 +++ php-src/ext/unicode/unicode.c Thu Sep 21 19:30:33 2006 @@ -15,7 +15,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: unicode.c,v 1.41 2006/09/20 23:44:23 pollita Exp $ */ +/* $Id: unicode.c,v 1.42 2006/09/21 19:30:33 andrei Exp $ */ #include "php_unicode.h" #include "zend_unicode.h" @@ -233,7 +233,7 @@ /* }}} */ /* {{{ proto callback unicode_set_error_handler(callback new_callback) U -Set (or clear) the unicode conversion error handler */ + Set (or clear) the custom Unicode conversion error handler */ PHP_FUNCTION(unicode_set_error_handler) { zval *error_handler; @@ -279,8 +279,7 @@ /* }}} */ /* {{{ proto bool unicode_restore_error_handler(void) U -Restores the active error handler to the one which was previously active -(Before the last unicode_set_error_handler() call) */ + Restores the active error handler to the one which was previously active (before the last unicode_set_error_handler() call) */ PHP_FUNCTION(unicode_restore_error_handler) { if (UG(conv_error_handler)) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php