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