projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
reimplement strverscmp to fix corner cases
[oweals/musl.git]
/
src
/
string
/
wcscasecmp.c
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
}