1 /*
2  * strcasecmp.c
3  */
4 
5 #include <string.h>
6 #include <ctype.h>
7 
8 int strcasecmp(const char *s1, const char *s2)
9 {
10     return strncasecmp(s1, s2, -1);
11 }
12