Searched refs:isodigit (Results 1 – 4 of 4) sorted by relevance
52 #define isodigit(c) (isdigit(c) && ((c) != '9') && ((c) != '8')) macro158 for (end = s; *end && ((type == OCT) ? isodigit(*end) : in dobase()
45 #define isodigit(c) (isdigit(c) && ((c) != '9') && ((c) != '8')) macro146 for (end = s; *end && ((type == OCT) ? isodigit(*end) :
227 #define isodigit(x) ((x >= '0') && (x <= '7')) macro311 if (!isodigit(c1)) { in scan_oct_byte()317 if (!isodigit(c2)) { in scan_oct_byte()324 if (!isodigit(c3)) { in scan_oct_byte()
67 #define isodigit(c) (isdigit(c) && ((c) != '9') && ((c) != '8')) macro261 for (end = s; *end && ((type == OCT) ? isodigit(*end) :