Lines Matching refs:c1
21 unsigned char c1, c2; in strnicmp() local
23 c1 = 0; c2 = 0; in strnicmp()
26 c1 = *s1; c2 = *s2; in strnicmp()
28 if (!c1) in strnicmp()
32 if (c1 == c2) in strnicmp()
34 c1 = tolower(c1); in strnicmp()
36 if (c1 != c2) in strnicmp()
40 return (int)c1 - (int)c2; in strnicmp()
47 int c1, c2; variable
51 c1 = tolower(*s1++);
53 } while ( c1 == c2 && c1 != 0 );
55 return c1 - c2;