Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
string
wcsncasecmp_l.c
pretty
plain
permalink
blame
history
•
6 lines
•
135 B
1
#include <wchar.h>
2
3
int wcsncasecmp_l(const wchar_t *l, const wchar_t *r, size_t n, locale_t locale)
4
{
5
	return wcsncasecmp(l, r, n);
6
}