shithub: scc

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