aboutsummaryrefslogtreecommitdiff
path: root/src/string/wcscasecmp.c
blob: af2fa304d1b5d8728da6facf3a774c578a3a2789 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <wchar.h>
#include <wctype.h>

int wcscasecmp(const wchar_t *l, const wchar_t *r)
{
	return wcsncasecmp(l, r, -1);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif