shithub: scc

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

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

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