#include int isalpha(int c) { return (isupper(c) || islower(c)); }