shithub: scc

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

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

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