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