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