summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/core/strcasecmp.c
blob: 2f7480d431e1e9704101dcbe6d616aa34ea31690 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/*
 * strcasecmp.c
 */

#include <string.h>
#include <ctype.h>

int strcasecmp(const char *s1, const char *s2)
{
    return strncasecmp(s1, s2, -1);
}