Home
last modified time | relevance | path

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

/f-stack/freebsd/libkern/
H A Dstrcasecmp.c46 const u_char *us1 = (const u_char *)s1, *us2 = (const u_char *)s2; in strcasecmp() local
48 while (tolower(*us1) == tolower(*us2)) { in strcasecmp()
51 us2++; in strcasecmp()
53 return (tolower(*us1) - tolower(*us2)); in strcasecmp()
62 const u_char *us2 = (const u_char *)s2; in strncasecmp() local
65 if (tolower(*us1) != tolower(*us2)) in strncasecmp()
66 return (tolower(*us1) - tolower(*us2)); in strncasecmp()
69 us2++; in strncasecmp()