1#include <wchar.h>
2#include <wctype.h>
3
4int wcscasecmp(const wchar_t* l, const wchar_t* r) {
5    return wcsncasecmp(l, r, -1);
6}
7