isdigit
__only_inline int isdigit(int _c)
#undef isdigit
isdigit(int c)
#define isdigit(c) (((c) >= '0') && ((c) <= '9'))
#define isdigit(c) ((c) >= '0' && (c) <= '9')