shithub: scc

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

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

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