shithub: scc

ref: 010023adf639d11faa57093647590296fb8a6264
dir: /src/libc/ctype/isupper.c/

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

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