mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 14:11:56 +00:00
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);
|
||
|
}
|