shithub: scc

ref: c538239b1b853339787f7cef424f328d6569c761
dir: /src/libc/ctype/isupper.c/

View raw version
#include <ctype.h>
#undef isupper

int
isupper(int c)
{
	return (__ctype+1)[c] & _U;
}