2 * linux/arch/alpha/lib/strcasecmp.c
5 #include <linux/string.h>
8 /* We handle nothing here except the C locale. Since this is used in
9 only one place, on strings known to contain only 7 bit ASCII, this
12 int strcasecmp(const char *a
, const char *b
)
19 if (ca
>= 'A' && ca
<= 'Z')
21 if (cb
>= 'A' && cb
<= 'Z')
23 } while (ca
== cb
&& ca
!= '\0');