mirror of
https://github.com/fluencelabs/musl
synced 2025-05-04 19:42:15 +00:00
11 lines
277 B
C
11 lines
277 B
C
|
#include <strings.h>
|
||
|
#include <ctype.h>
|
||
|
|
||
|
int strncasecmp(const char *_l, const char *_r, size_t n)
|
||
|
{
|
||
|
const unsigned char *l=_l, *r=_r;
|
||
|
if (!n--) return 0;
|
||
|
for (; *l && *r && n && (*l == *r || tolower(*l) == tolower(*r)); l++, r++, n--);
|
||
|
return tolower(*l) - tolower(*r);
|
||
|
}
|