shithub: scc

ref: 866b125797cfd5ab0ebb60024c39ca91c5053cea
dir: /lib/c/toupper.c/

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

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