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