shithub: scc

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

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

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