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