shithub: scc

ref: 9c363497114e0f7a050c5952fdadb1236e39ed8e
dir: /src/libc/ctype/isupper.c/

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

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