shithub: scc

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

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

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