shithub: scc

ref: bf06512e77f04190d1f1ed54faced3ee8f1097d5
dir: /src/libc/ctype/toupper.c/

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

int
toupper(int c)
{
	return (islower(c)) ? c & ~0x20 : c;
}