shithub: scc

ref: 382246c710d899190d9c0dbc2f971e4542ece1ff
dir: /lib/c/src/toupper.c/

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

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