summaryrefslogtreecommitdiff
path: root/src/string/strncasecmp.c
blob: 24659721d7c5e52d3423b53c38c678304a7fafa6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <strings.h>
#include <ctype.h>

int strncasecmp(const char *_l, const char *_r, size_t n)
{
	const unsigned char *l=(void *)_l, *r=(void *)_r;
	if (!n--) return 0;
	for (; *l && *r && n && (*l == *r || tolower(*l) == tolower(*r)); l++, r++, n--);
	return tolower(*l) - tolower(*r);
}