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

#include <ctype.h>

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