allwinner_a64/android/external/syslinux/core/strcasecmp.c
2018-08-08 16:14:42 +08:00

11 lines
151 B
C

/*
* strcasecmp.c
*/
#include <string.h>
#include <ctype.h>
int strcasecmp(const char *s1, const char *s2)
{
return strncasecmp(s1, s2, -1);
}