]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/string/wcscasecmp_l.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / string / wcscasecmp_l.c
1 #include <wchar.h>
2
3 int wcscasecmp_l(const wchar_t *l, const wchar_t *r, locale_t locale)
4 {
5 return wcscasecmp(l, r);
6 }