#include #undef islower int islower(int c) { return (c >= 'a' && c <= 'z'); }