xref: /aosp_15_r20/external/musl/src/string/wcsncasecmp.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <wchar.h>
2 #include <wctype.h>
3 
wcsncasecmp(const wchar_t * l,const wchar_t * r,size_t n)4 int wcsncasecmp(const wchar_t *l, const wchar_t *r, size_t n)
5 {
6 	if (!n--) return 0;
7 	for (; *l && *r && n && (*l == *r || towlower(*l) == towlower(*r)); l++, r++, n--);
8 	return towlower(*l) - towlower(*r);
9 }
10