Searched defs:is_digit (Results 1 – 2 of 2) sorted by relevance
16 #define is_digit(c) ((c) >= '0' && (c) <= '9') // 用来判断是否是数字的宏 macro