Home
last modified time | relevance | path

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

/xnu-10002.41.9/osfmk/device/
H A Dsubrs.c401 const unsigned char *us1 = (const u_char *)s1, in strcasecmp_impl() local
404 while (tolower(*us1) == tolower(*us2++)) { in strcasecmp_impl()
405 if (*us1++ == '\0') { in strcasecmp_impl()
409 return tolower(*us1) - tolower(*--us2); in strcasecmp_impl()
418 const unsigned char *us1 = (const u_char *)s1, in strncasecmp_impl() local
422 if (tolower(*us1) != tolower(*us2++)) { in strncasecmp_impl()
423 return tolower(*us1) - tolower(*--us2); in strncasecmp_impl()
425 if (*us1++ == '\0') { in strncasecmp_impl()