Searched refs:c1 (Results 1 – 1 of 1) sorted by relevance
46 unsigned char c1, c2; in strncasecmp() local52 c1 = *s1++; in strncasecmp()54 if (!c1 || !c2) in strncasecmp()56 if (c1 == c2) in strncasecmp()58 c1 = tolower(c1); in strncasecmp()60 if (c1 != c2) in strncasecmp()63 return (int)c1 - (int)c2; in strncasecmp()71 int c1, c2; in strcasecmp() local74 c1 = tolower(*s1++); in strcasecmp()76 } while (c1 == c2 && c1 != 0); in strcasecmp()[all …]