diff options
author | Sebastian Bergmann <sbergmann@php.net> | 2001-08-04 05:22:55 +0000 |
---|---|---|
committer | Sebastian Bergmann <sbergmann@php.net> | 2001-08-04 05:22:55 +0000 |
commit | ea79632b29072aa2238479cbacac359564a5d03e (patch) | |
tree | 8f1a6d603622df44a8736c7d58c754d95a6c614f /ext/standard/php_string.h | |
parent | 5bdc64c505c05024e213ed979f25990c4a9e7761 (diff) | |
download | php-git-ea79632b29072aa2238479cbacac359564a5d03e.tar.gz |
Fix Win32 (and maybe other ZTS) builds.
Diffstat (limited to 'ext/standard/php_string.h')
-rw-r--r-- | ext/standard/php_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_string.h b/ext/standard/php_string.h index 63c9d1085e..875106705f 100644 --- a/ext/standard/php_string.h +++ b/ext/standard/php_string.h @@ -112,7 +112,7 @@ PHPAPI char *php_stristr(unsigned char *s, unsigned char *t, size_t s_len, size_ PHPAPI char *php_str_to_str(char *haystack, int length, char *needle, int needle_len, char *str, int str_len, int *_new_length); PHPAPI void php_trim(pval *str, pval *return_value, int mode); -void php_trim2(zval *str, zval *what, zval *return_value, int mode); +PHPAPI void php_trim2(zval *str, zval *what, zval *return_value, int mode); PHPAPI void php_strip_tags(char *rbuf, int len, int state, char *allow, int allow_len); PHPAPI void php_char_to_str(char *str, uint len, char from, char *to, int to_len, pval *result); |