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