Searched refs:sc (Results 1 - 8 of 8) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/string/
H A Dstrpbrk.c40 int c, sc; local
43 for (scanp = s2; (sc = *scanp++) != 0;)
44 if (sc == c)
H A Dstrcspn.c43 char c, sc; local
53 if ((sc = *spanp++) == c)
55 } while (sc != 0);
H A Dstrsep.c50 int c, sc; local
59 if ((sc = *spanp++) == c) {
67 } while (sc != 0);
H A Dstrspn.c40 char c, sc; local
47 for (spanp = s2; (sc = *spanp++) != 0;)
48 if (sc == c)
H A Dstrstr.c42 char c, sc; local
49 if ((sc = *s++) == 0)
51 } while (sc != c);
H A Dstrtok.c44 int c, sc; local
56 for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
57 if (c == sc)
75 if ((sc = *spanp++) == c) {
83 } while (sc != 0);
/bionic/libc/upstream-freebsd/lib/libc/string/
H A Dwcstok.c46 wchar_t c, sc; local
56 for (spanp = delim; (sc = *spanp++) != L'\0';) {
57 if (c == sc)
75 if ((sc = *spanp++) == c) {
83 } while (sc != L'\0');
/bionic/libc/upstream-netbsd/lib/libc/string/
H A Dstrcasestr.c51 char c, sc; local
62 if ((sc = *s++) == 0)
64 } while ((char)tolower((unsigned char)sc) != c);

Completed in 286 milliseconds