#include #undef isalpha int isalpha(int c) { c = c | 0x20; return (c >= 'a') && (c <= 'z'); }