summaryrefslogtreecommitdiff
path: root/missing/strcasecmp.c
blob: 1ce20704c1cdf5341163caf21e9bdd89e0ed1bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* public domain rewrite of strcasecmp(3) */

#include <ctype.h>

int
strcasecmp(const char *p1, const char *p2)
{
    while (*p1 && *p2) {
	if (toupper(*p1) != toupper(*p2))
	    return toupper(*p1) - toupper(*p2);
	p1++;
	p2++;
    }
    return strlen(p1) - strlen(p2);
}