Searched refs:isxdigit (Results 1 – 2 of 2) sorted by relevance
117 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) macro183 } else if (base == 16 && isxdigit(c)) { in ipaddr_aton()
2881 No need to test isascii(c) before isdigit(c) or isxdigit(c).