#include #include "_ctype.h" #include extern "C" isalpha(int c) { assert(c<256); return ascii_table[c] & (UPPER|LOWER); }