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