#include #include int toupper(int c) { if (islower(c)) return c & 0x5f; return c; } int toupper_l(int c, locale_t unused locale) { return toupper(c); }