_M_ISDIGIT
#define _M_ISDIGIT(c) (((c) >= 0) && ((c) < 256) && isdigit((c)))
#define _M_ISDIGIT(c) isdigit((c))