Home
last modified time | relevance | path

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

/xnu-8020.101.4/osfmk/device/
H A Dsubrs.c234 tolower(unsigned char ch) in tolower() function
249 while (tolower(*us1) == tolower(*us2++)) { in strcasecmp()
254 return tolower(*us1) - tolower(*--us2); in strcasecmp()
265 if (tolower(*us1) != tolower(*us2++)) { in strncasecmp()
266 return tolower(*us1) - tolower(*--us2); in strncasecmp()
/xnu-8020.101.4/SETUP/config/
H A Dmkmakefile.c545 c = isupper(*cp) ? tolower(*cp) : *cp; in opteq()
546 d = isupper(*dp) ? tolower(*dp) : *dp; in opteq()