From: Antony Dovgal Date: Tue, 3 Oct 2006 18:38:57 +0000 (+0000) Subject: fix build X-Git-Tag: RELEASE_1_0_0RC1~1451 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efe92dc230163934e1c7987d436c15834820d819;p=php fix build --- diff --git a/ext/standard/php_string.h b/ext/standard/php_string.h index 0a144c098e..c33fd679c4 100644 --- a/ext/standard/php_string.h +++ b/ext/standard/php_string.h @@ -133,7 +133,7 @@ PHPAPI void php_u_basename(UChar *s, int len, UChar *suffix, int sufflen, UChar PHPAPI void php_basename(char *s, int len, char *suffix, int sufflen, char **p_ret, int *p_len TSRMLS_DC); PHPAPI int php_u_dirname(UChar *str, int len); PHPAPI int php_dirname(char *str, int len); -PHPAPI UChar *php_u_stristr(UChar *s, UChar *t, int s_len, int t_len TSRMLS_DC); +PHPAPI UChar *php_u_stristr(UChar *s, UChar *t, int s_len, int t_len, zend_bool find_first TSRMLS_DC); PHPAPI char *php_stristr(char *s, char *t, size_t s_len, size_t t_len); PHPAPI int php_u_strspn(UChar *s1, UChar *s2, UChar *s1_end, UChar *s2_end); PHPAPI size_t php_strspn(char *s1, char *s2, char *s1_end, char *s2_end);