ref: 297c3c7dfa958231abe140ee00d38b0e684ad48c dir: /src/libc/ctype/toupper.c/
#include <ctype.h> #undef toupper int toupper(int c) { return (islower(c)) ? c & ~0x20 : c; }