blob: 3f0d55092b84e587a9fe0ff519a82cde4f1a6d72 [file] [log] [blame]
#include <wchar.h>
#include <wctype.h>
int wcscasecmp(const wchar_t* l, const wchar_t* r) {
return wcsncasecmp(l, r, -1);
}