shithub: scc

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

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

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