fmk Fri Oct 28 15:21:49 2005 EDT
Modified files:
/php-src/ext/standard php_string.h
Log:
Adding missing function declarations to fix win32 build
http://cvs.php.net/diff.php/php-src/ext/standard/php_string.h?r1=1.92&r2=1.93&ty=u
Index: php-src/ext/standard/php_string.h
diff -u php-src/ext/standard/php_string.h:1.92
php-src/ext/standard/php_string.h:1.93
--- php-src/ext/standard/php_string.h:1.92 Thu Oct 20 15:25:54 2005
+++ php-src/ext/standard/php_string.h Fri Oct 28 15:21:46 2005
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_string.h,v 1.92 2005/10/20 19:25:54 rolland Exp $ */
+/* $Id: php_string.h,v 1.93 2005/10/28 19:21:46 fmk Exp $ */
/* Synced with php 3.0 revision 1.43 1999-06-16 [ssb] */
@@ -132,6 +132,9 @@
PHPAPI size_t php_dirname(char *str, size_t len);
PHPAPI UChar *php_u_stristr(UChar *s, UChar *t, int32_t s_len, int32_t t_len);
PHPAPI char *php_stristr(unsigned char *s, unsigned char *t, size_t s_len,
size_t t_len);
+PHPAPI int32_t 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);
+PHPAPI int32_t php_u_strcspn(UChar *s1, UChar *s2, UChar *s1_end, UChar
*s2_end);
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,
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php