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