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