musl/src/string/strncasecmp.c

11 lines
293 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#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;
2011-02-12 00:22:29 -05:00
if (!n--) return 0;
for (; *l && *r && n && (*l == *r || tolower(*l) == tolower(*r)); l++, r++, n--);
return tolower(*l) - tolower(*r);
}