blob: 837e58b4030d016ce2d8f8262f69da0928e0b5f5 [file] [log] [blame]
#include <ctype.h>
#include <strings.h>
#include "libc.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);
}