#include #undef toupper int toupper(int c) { return islower(c) ? (c & 0xdf) : c; }