Lines Matching refs:ct
278 int strcmp(const char *cs, const char *ct) in strcmp() argument
284 c2 = *ct++; in strcmp()
302 int strncmp(const char *cs, const char *ct, size_t count) in strncmp() argument
308 c2 = *ct++; in strncmp()
483 char *strpbrk(const char *cs, const char *ct) in strpbrk() argument
488 if (strchr(ct, *sc)) in strpbrk()
508 char *strsep(char **s, const char *ct) in strsep() argument
516 end = strpbrk(sbegin, ct); in strsep()
673 __visible int memcmp(const void *cs, const void *ct, size_t count) in memcmp() argument
681 const unsigned long *u2 = ct; in memcmp()
690 ct = u2; in memcmp()
693 for (su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--) in memcmp()