X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstring%2Fwcscasecmp.c;fp=src%2Fstring%2Fwcscasecmp.c;h=3edeec7d3dd632fd1241b6d246bbc4abb2098672;hb=e0614f7cd418afedd06c9bcd5abb965608bc52f8;hp=0000000000000000000000000000000000000000;hpb=899b13cae77469a9ed1f076c456b66d567af69d8;p=musl diff --git a/src/string/wcscasecmp.c b/src/string/wcscasecmp.c new file mode 100644 index 00000000..3edeec7d --- /dev/null +++ b/src/string/wcscasecmp.c @@ -0,0 +1,7 @@ +#include +#include + +int wcscasecmp(const wchar_t *l, const wchar_t *r) +{ + return wcsncasecmp(l, r, -1); +}