Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
string
wcscasecmp.c
pretty
plain
permalink
blame
history
•
7 lines
•
126 B
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
}