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