shithub: scc

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

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

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