derick Wed Aug 29 14:11:30 2007 UTC Modified files: /php-src/ext/standard php_string.h Log: - Put the PHPAPI php_u_str_to_str() function in the .h, just like the rest. http://cvs.php.net/viewvc.cgi/php-src/ext/standard/php_string.h?r1=1.107&r2=1.108&diff_format=u Index: php-src/ext/standard/php_string.h diff -u php-src/ext/standard/php_string.h:1.107 php-src/ext/standard/php_string.h:1.108 --- php-src/ext/standard/php_string.h:1.107 Mon Jan 1 09:29:32 2007 +++ php-src/ext/standard/php_string.h Wed Aug 29 14:11:30 2007 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_string.h,v 1.107 2007/01/01 09:29:32 sebastian Exp $ */ +/* $Id: php_string.h,v 1.108 2007/08/29 14:11:30 derick Exp $ */ /* Synced with php 3.0 revision 1.43 1999-06-16 [ssb] */ @@ -148,6 +148,8 @@ int needle_len, char *str, int str_len, int *_new_length, int case_sensitivity, int *replace_count); PHPAPI char *php_str_to_str(char *haystack, int length, char *needle, int needle_len, char *str, int str_len, int *_new_length); +PHPAPI UChar *php_u_str_to_str_ex(UChar *haystack, int length, + UChar *needle, int needle_len, UChar *repl, int repl_len, int *_new_length, int *replace_count); PHPAPI char *php_trim(char *c, int len, char *what, int what_len, zval *return_value, int mode TSRMLS_DC); PHPAPI int php_u_strip_tags(UChar *rbuf, int len, int *stateptr, UChar *allow, int allow_len TSRMLS_DC); PHPAPI size_t php_strip_tags(char *rbuf, int len, int *state, char *allow, int allow_len);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php