shithub: scc

ref: 0a46f3b0d1e4fbeb49101ba0ce3101981c5c6513
dir: /src/libc/ctype/toupper.c/

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

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