Searched refs:c1 (Results 1 – 1 of 1) sorted by relevance
44 unsigned char c1, c2; in strncasecmp() local50 c1 = *s1++; in strncasecmp()52 if (!c1 || !c2) in strncasecmp()54 if (c1 == c2) in strncasecmp()56 c1 = tolower(c1); in strncasecmp()58 if (c1 != c2) in strncasecmp()61 return (int)c1 - (int)c2; in strncasecmp()77 int c1, c2; in strcasecmp() local80 c1 = tolower(*s1++); in strcasecmp()82 } while (c1 == c2 && c1 != 0); in strcasecmp()[all …]