1 #include <linux/types.h>
2 #include <linux/ctype.h>
3 #include <linux/string.h>
5 int strcasecmp(const char *s1, const char *s2)
12 } while (c1 == c2 && c1 != 0);
16 int strncasecmp(const char *s1, const char *s2, size_t n)
23 } while ((--n > 0) && c1 == c2 && c1 != 0);