netinet/if_ether.h: add ETH_P_LLDP from linux v5.3
[musl] / 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 }