shithub: scc

ref: 3eb88c0d7a390c249fd74f973b6e6f14549b6a39
dir: /src/libc/ctype/toupper.c/

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

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