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