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