shithub: scc

ref: d9ac6c3479972cda5337b5c65f8ee731c574c82b
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;
}