mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 14:11:56 +00:00
add all missing wchar functions except floating point parsers
these are mostly untested and adapted directly from corresponding byte string functions and similar.
This commit is contained in:
7
src/string/wcscasecmp.c
Normal file
7
src/string/wcscasecmp.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
|
||||
int wcscasecmp(const wchar_t *l, const wchar_t *r)
|
||||
{
|
||||
return wcsncasecmp(l, r, -1);
|
||||
}
|
Reference in New Issue
Block a user