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