shithub: scc

ref: 0227f08f277216ef979a859e1170aff185205abb
dir: /src/libc/ctype/toupper.c/

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

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