ISDIGIT
#define ISDIGIT(x) isdigit((u_char)(x))
#define ISDIGIT(ch) ((ch) >= '0' && (ch) <= '9')
#define ISDIGIT(_c) \