shithub: scc

ref: 3bffda9fb4ff86d00ee0e4e488447480d869da87
dir: /src/libc/ctype/toupper.c/

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

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