s2                 40 usr/lib/libc/string/memcmp.c memcmp(s1, s2, n)
s2                 41 usr/lib/libc/string/memcmp.c 	const void *s1, *s2;
s2                 45 usr/lib/libc/string/memcmp.c 		const unsigned char *p1 = s1, *p2 = s2;
s2                 37 usr/lib/libc/string/strcasecmp.c strcasecmp(s1, s2)
s2                 38 usr/lib/libc/string/strcasecmp.c 	const char *s1, *s2;
s2                 41 usr/lib/libc/string/strcasecmp.c 			*us2 = (const unsigned char *)s2;
s2                 50 usr/lib/libc/string/strcasecmp.c strncasecmp(s1, s2, n)
s2                 51 usr/lib/libc/string/strcasecmp.c 	const char *s1, *s2;
s2                 54 usr/lib/libc/string/strcasecmp.c 	if (s1 == NULL || s2 == NULL)
s2                 59 usr/lib/libc/string/strcasecmp.c 				*us2 = (const unsigned char *)s2;
s2                 40 usr/lib/libc/string/strcmp.c strcmp(s1, s2)
s2                 41 usr/lib/libc/string/strcmp.c 	const char *s1, *s2;
s2                 43 usr/lib/libc/string/strcmp.c 	while (*s1 == *s2++)
s2                 46 usr/lib/libc/string/strcmp.c 	return (*(const unsigned char *)s1 - *(const unsigned char *)--s2);
s2                 40 usr/lib/libc/string/strcoll.c strcoll(s1, s2)
s2                 41 usr/lib/libc/string/strcoll.c 	const char *s1, *s2;
s2                 44 usr/lib/libc/string/strcoll.c 	return (strcmp(s1, s2));
s2                 40 usr/lib/libc/string/strcspn.c strcspn(s1, s2)
s2                 42 usr/lib/libc/string/strcspn.c 	const char *s2;
s2                 53 usr/lib/libc/string/strcspn.c 		spanp = s2;
s2                 34 usr/lib/libc/string/strncmp.c strncmp(s1, s2, n)
s2                 35 usr/lib/libc/string/strncmp.c 	const char *s1, *s2;
s2                 42 usr/lib/libc/string/strncmp.c 		if (*s1 != *s2++)
s2                 43 usr/lib/libc/string/strncmp.c 			return (*(unsigned char *)s1 - *(unsigned char *)--s2);
s2                 37 usr/lib/libc/string/strpbrk.c strpbrk(s1, s2)
s2                 38 usr/lib/libc/string/strpbrk.c 	const char *s1, *s2;
s2                 44 usr/lib/libc/string/strpbrk.c 		for (scanp = s2; (sc = *scanp++) != 0;)
s2                 37 usr/lib/libc/string/strspn.c strspn(s1, s2)
s2                 39 usr/lib/libc/string/strspn.c 	const char *s2;
s2                 49 usr/lib/libc/string/strspn.c 	for (spanp = s2; (sc = *spanp++) != 0;)