ref: e3c286305c8ce6faa45646a6f8d919137a32b6dd dir: /lib/c/toupper.c/
#define __USE_MACROS #include <ctype.h> #undef toupper int toupper(int c) { return (islower(c)) ? c & ~0x20 : c; }