#include #undef isupper int isupper(int c) { return (c >= 'A' && c <= 'Z'); }