Home
last modified time | relevance | path

Searched refs:c2 (Results 1 – 1 of 1) sorted by relevance

/lib/
Dstring.c37 unsigned char c1, c2; in strnicmp() local
39 c1 = c2 = 0; in strnicmp()
43 c2 = *s2; in strnicmp()
48 if (!c2) in strnicmp()
50 if (c1 == c2) in strnicmp()
53 c2 = tolower(c2); in strnicmp()
54 if (c1 != c2) in strnicmp()
58 return (int)c1 - (int)c2; in strnicmp()
66 int c1, c2; in strcasecmp() local
70 c2 = tolower(*s2++); in strcasecmp()
[all …]