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