shithub: scc

ref: 6c1eac285301e17024452e18e95e882ed758f3b0
dir: /src/libc/ctype/toupper.c/

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

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