iconv: add euro symbol to GBK as single byte 0x80
[musl.git] / src / string / wcscasecmp.c
blob3edeec7d3dd632fd1241b6d246bbc4abb2098672
1 #include <wchar.h>
2 #include <wctype.h>
4 int wcscasecmp(const wchar_t *l, const wchar_t *r)
6 return wcsncasecmp(l, r, -1);