is_digit
is_digit(unsigned char c)
#define is_digit(c) ((unsigned)to_digit(c) <= 9)
#define is_digit(c) (((unsigned)to_digit(c)) <= 9)