Searched defs:test_int (Results 1 - 1 of 1) sorted by relevance

/bind-9.11.3/contrib/queryperf/
H A Dqueryperf.c145 int is_uint(char *test_int, unsigned int *result);
458 * Tests if a string, test_int, is a valid unsigned integer
466 is_uint(char *test_int, unsigned int *result) { argument
470 if (test_int == NULL)
473 if (is_digit(test_int[0]) == FALSE)
476 value = strtoul(test_int, &end, 10);

Completed in 25 milliseconds