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