shithub: scc

ref: 99970c47ca06ce506823bd2329a37a8f439ce304
dir: /src/libc/ctype/toupper.c/

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

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