andrei Fri Oct 6 17:14:14 2006 UTC Modified files: /php-src/ext/unicode collator.c property.c Log: Fix protos. http://cvs.php.net/viewvc.cgi/php-src/ext/unicode/collator.c?r1=1.10&r2=1.11&diff_format=u Index: php-src/ext/unicode/collator.c diff -u php-src/ext/unicode/collator.c:1.10 php-src/ext/unicode/collator.c:1.11 --- php-src/ext/unicode/collator.c:1.10 Fri Sep 22 19:50:02 2006 +++ php-src/ext/unicode/collator.c Fri Oct 6 17:14:14 2006 @@ -14,7 +14,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: collator.c,v 1.10 2006/09/22 19:50:02 andrei Exp $ */ +/* $Id: collator.c,v 1.11 2006/10/06 17:14:14 andrei Exp $ */ #include "php.h" #include "ext/standard/php_array.h" @@ -247,7 +247,7 @@ } /* }}} */ -/* {{{ proto void Collator::set_strength(int strength) U +/* {{{ proto void Collator::setStrength(int strength) U Set the collation strength */ /* {{{ proto void collator_set_strength(Collator coll, int strength) U Set the collation strength */ @@ -265,7 +265,7 @@ } /* }}} */ -/* {{{ proto int Collator::get_strength() U +/* {{{ proto int Collator::getStrength() U Returns the current collation strength */ /* {{{ proto int collator_get_strength(Collator coll) U Returns the current collation strength */ @@ -282,7 +282,7 @@ } /* }}} */ -/* {{{ proto bool Collator::set_attribute(int attribute, int value) U +/* {{{ proto bool Collator::setAttribute(int attribute, int value) U Set a collation attribute */ /* {{{ proto bool collator_set_attribute(Collator coll, int attribute, int value) U Set a collation attribute */ @@ -304,7 +304,7 @@ /* }}} */ -/* {{{ proto int Collator::get_attribute(int attribute) U +/* {{{ proto int Collator::getAttribute(int attribute) U Returns a collation attribute */ /* {{{ proto int collator_get_attribute(Collator coll, int attribute) U Returns a collation attribute */ http://cvs.php.net/viewvc.cgi/php-src/ext/unicode/property.c?r1=1.16&r2=1.17&diff_format=u Index: php-src/ext/unicode/property.c diff -u php-src/ext/unicode/property.c:1.16 php-src/ext/unicode/property.c:1.17 --- php-src/ext/unicode/property.c:1.16 Thu Sep 21 18:26:31 2006 +++ php-src/ext/unicode/property.c Fri Oct 6 17:14:14 2006 @@ -14,7 +14,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: property.c,v 1.16 2006/09/21 18:26:31 andrei Exp $ */ +/* $Id: property.c,v 1.17 2006/10/06 17:14:14 andrei Exp $ */ #include "php_unicode.h" @@ -253,7 +253,7 @@ /* {{{ Single character properties */ -/* {{{ poto float char_get_numeric_value(char text) U +/* {{{ proto float char_get_numeric_value(char text) U Get the numeric value for the character, as defined in the Unicode Character Database */ PHP_FUNCTION(char_get_numeric_value) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php