xref: /aosp_15_r20/external/musl/src/string/wcscasecmp.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <wchar.h>
2 #include <wctype.h>
3 
wcscasecmp(const wchar_t * l,const wchar_t * r)4 int wcscasecmp(const wchar_t *l, const wchar_t *r)
5 {
6 	return wcsncasecmp(l, r, -1);
7 }
8