From: Derick Rethans Date: Wed, 29 Aug 2007 14:11:30 +0000 (+0000) Subject: - Put the PHPAPI php_u_str_to_str() function in the .h, just like the rest. X-Git-Tag: RELEASE_2_0_0a1~1925 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6810f847612e0f3d4f8cf86186a9442f1739084d;p=php - Put the PHPAPI php_u_str_to_str() function in the .h, just like the rest. --- diff --git a/ext/standard/php_string.h b/ext/standard/php_string.h index ca5835bf7f..5633fe1efe 100644 --- a/ext/standard/php_string.h +++ b/ext/standard/php_string.h @@ -148,6 +148,8 @@ PHPAPI char *php_str_to_str_ex(char *haystack, int length, char *needle, 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);