sniper Sat Aug 13 22:03:03 2005 EDT Modified files: /php-src/ext/unicode unicode.c Log: fix protos http://cvs.php.net/diff.php/php-src/ext/unicode/unicode.c?r1=1.3&r2=1.4&ty=u Index: php-src/ext/unicode/unicode.c diff -u php-src/ext/unicode/unicode.c:1.3 php-src/ext/unicode/unicode.c:1.4 --- php-src/ext/unicode/unicode.c:1.3 Sat Aug 13 09:43:31 2005 +++ php-src/ext/unicode/unicode.c Sat Aug 13 22:03:02 2005 @@ -15,14 +15,14 @@ +----------------------------------------------------------------------+ */ -/* $Id: unicode.c,v 1.3 2005/08/13 13:43:31 wez Exp $ */ +/* $Id: unicode.c,v 1.4 2005/08/14 02:03:02 sniper Exp $ */ #include "php_unicode.h" #if HAVE_UNICODE #include "zend_unicode.h" -/* {{{ proto unicode unicode_decode(string $input, string $encoding) - Takes a string in the souce encoding and converts it to a UTF-16 unicode string, returning the result */ +/* {{{ proto unicode unicode_decode(string input, string encoding) + Takes a string in the source encoding and converts it to a UTF-16 unicode string, returning the result */ static PHP_FUNCTION(unicode_decode) { union { @@ -66,7 +66,7 @@ } /* }}} */ -/* {{{ proto string unicode_encode(unicode $input, string $encoding) +/* {{{ proto string unicode_encode(unicode input, string encoding) Takes a unicode string and converts it to a string in the specified encoding */ static PHP_FUNCTION(unicode_encode) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php