Newer
Older
Scratch / mobius / src / libc / string / towlower.c
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 110 bytes Scratch
#include <wchar.h>

extern const wchar_info_t unicode[];

int towlower(wint_t c)
{
	return unicode[c].lower;
}