rolland         Sat Oct 22 09:36:57 2005 EDT

  Modified files:              
    /php-src/ext/standard       string.c 
  Log:
  - php_u_stristr: Remove leading back-slash ... sheesh
  
  
http://cvs.php.net/diff.php/php-src/ext/standard/string.c?r1=1.502&r2=1.503&ty=u
Index: php-src/ext/standard/string.c
diff -u php-src/ext/standard/string.c:1.502 php-src/ext/standard/string.c:1.503
--- php-src/ext/standard/string.c:1.502 Sat Oct 22 09:32:51 2005
+++ php-src/ext/standard/string.c       Sat Oct 22 09:36:55 2005
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: string.c,v 1.502 2005/10/22 13:32:51 rolland Exp $ */
+/* $Id: string.c,v 1.503 2005/10/22 13:36:55 rolland Exp $ */
 
 /* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
 
@@ -1917,7 +1917,7 @@
 
 /* {{{ php_u_stristr
    Unicode version of case insensitve strstr */
-\PHPAPI UChar *php_u_stristr(UChar *s, UChar *t, int32_t s_len, int32_t t_len)
+PHPAPI UChar *php_u_stristr(UChar *s, UChar *t, int32_t s_len, int32_t t_len)
 {
        int32_t i,j, last;
        UChar32 ch1, ch2;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to