github.com/afumu/libc@v0.0.6/musl/src/string/wcscasecmp.c (about)

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