summaryrefslogtreecommitdiffstats
path: root/arch/ppc/lib/strcase.c
blob: a9e40bce9342f19654ae09931a7573ef8efaf685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <linux/ctype.h>

int strcasecmp(const char *s1, const char *s2)
{
	int c1, c2;

	do {
		c1 = tolower(*s1++);
		c2 = tolower(*s2++);
	} while (c1 == c2 && c1 != 0);
	return c1 - c2;
}