strncasecmp.c\string\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/string/strncasecmp.c
blob: 24659721d7c5e52d3423b53c38c678304a7fafa6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月27日 14:34:05 +0000

AltStyle によって変換されたページ (->オリジナル) /