mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 06:02:04 +00:00
these are mostly untested and adapted directly from corresponding byte string functions and similar.
8 lines
126 B
C
8 lines
126 B
C
#include <wchar.h>
|
|
#include <wctype.h>
|
|
|
|
int wcscasecmp(const wchar_t *l, const wchar_t *r)
|
|
{
|
|
return wcsncasecmp(l, r, -1);
|
|
}
|