shithub: scc

ref: 433b9cd26eb5d27977eb8cde6bb1c019606e0ffa
dir: /src/libc/ctype/toupper.c/

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

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