mirror of
https://github.com/fluencelabs/musl
synced 2025-06-24 12:12:04 +00:00
initial check-in, version 0.5.0
This commit is contained in:
10
src/string/strncasecmp.c
Normal file
10
src/string/strncasecmp.c
Normal file
@ -0,0 +1,10 @@
|
||||
#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);
|
||||
}
|
Reference in New Issue
Block a user