mirror of
https://github.com/fluencelabs/musl
synced 2025-05-04 11:32:14 +00:00
sadly the C language does not specify any such implicit conversion, so this is not a matter of just fixing warnings (as gcc treats it) but actual errors. i would like to revisit a number of these changes and possibly revise the types used to reduce the number of casts required.
11 lines
293 B
C
11 lines
293 B
C
#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);
|
|
}
|