#include <stdbool.h> bool isalpha(const char c) { return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')); }