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