Lines Matching refs:s1
305 AP_DECLARE(char *) ap_strcasestr(const char *s1, const char *s2)
310 return((char *)s1);
313 for ( ; (*s1 != '\0') && (apr_tolower(*s1) != apr_tolower(*s2)); s1++);
314 if (*s1 == '\0') {
318 p1 = (char *)s1;
323 return((char *)s1);
330 /* didn't find a match here, try starting at next character in s1 */
331 s1++;
333 return((char *)s1);