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