From: Rolland Santimano Date: Sat, 22 Oct 2005 13:36:55 +0000 (+0000) Subject: - php_u_stristr: Remove leading back-slash ... sheesh X-Git-Tag: RELEASE_0_9_1~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a9483247782939d07201362baf800535dcd72400;p=php - php_u_stristr: Remove leading back-slash ... sheesh --- diff --git a/ext/standard/string.c b/ext/standard/string.c index 63c0364012..876978c1f7 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -1917,7 +1917,7 @@ PHP_FUNCTION(pathinfo) /* {{{ 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;