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