main.c | 180 static int getulong(const char *, char, char **, 182 #define GETNUM32(a, v) getulong(a, '\0', NULL, v, UINT32_MAX) 183 #define GETNUM16(a, v) getulong(a, '\0', NULL, v, UINT16_MAX) 184 #define GETNUM8(a, v) getulong(a, '\0', NULL, v, UINT8_MAX) 1663 if (getulong(*tp, '\0', &cp, &v, UINT32_MAX) != 0) { 1680 if (getulong(cp, '/', &ncp, &n, UINT32_MAX) != 0) 1686 if (getulong(cp, '/', &ncp, &v, UINT32_MAX) != 0) 1690 if (getulong(cp, '\0', &ncp, &v, UINT32_MAX) != 0) 2157 getulong(const char *str, char sep, char **epp, unsigned long *ul, function in typeref:typename:int
|