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

extern const wchar_info_t unicode[];

int iswupper(wint_t c)
{
	return unicode[c].upper == c;
}