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