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