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

int wcsncasecmp_l(const wchar_t *l, const wchar_t *r, size_t n, locale_t locale)
{
	return wcsncasecmp(l, r, n);
}


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