shithub: scc

ref: 439629f3f58c21dd056721107e4dadb3b6e0482f
dir: /src/libc/ctype/isupper.c/

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

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