Home
last modified time | relevance | path

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

/xnu-8019.80.24/osfmk/device/
H A Dsubrs.c246 const unsigned char *us1 = (const u_char *)s1, in strcasecmp() local
249 while (tolower(*us1) == tolower(*us2++)) { in strcasecmp()
250 if (*us1++ == '\0') { in strcasecmp()
254 return tolower(*us1) - tolower(*--us2); in strcasecmp()
261 const unsigned char *us1 = (const u_char *)s1, in strncasecmp() local
265 if (tolower(*us1) != tolower(*us2++)) { in strncasecmp()
266 return tolower(*us1) - tolower(*--us2); in strncasecmp()
268 if (*us1++ == '\0') { in strncasecmp()