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