Home
last modified time | relevance | path

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

/xnu-8792.61.2/osfmk/device/
H A Dsubrs.c245 const unsigned char *us1 = (const u_char *)s1, in strcasecmp() local
248 while (tolower(*us1) == tolower(*us2++)) { in strcasecmp()
249 if (*us1++ == '\0') { in strcasecmp()
253 return tolower(*us1) - tolower(*--us2); in strcasecmp()
260 const unsigned char *us1 = (const u_char *)s1, in strncasecmp() local
264 if (tolower(*us1) != tolower(*us2++)) { in strncasecmp()
265 return tolower(*us1) - tolower(*--us2); in strncasecmp()
267 if (*us1++ == '\0') { in strncasecmp()