shithub: scc

ref: 4e6fb511b31c7d113f56e968c952575cb0130df3
dir: /src/libc/ctype/toupper.c/

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

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