Lines Matching refs:endptr
2257 char *endptr;
2258 int result = strtol(s, &endptr, 10);
2259 if (s == endptr)
2267 char *endptr;
2268 double result = strtod(s, &endptr);
2269 if (s == endptr)
2337 char *endptr;
2338 long int val = strtol (token, &endptr, 0);
2340 if (token == endptr || *endptr != '\0')
2781 char *endptr;
2783 dirind = strtol(argv[i], &endptr, 10);
2784 if (argv[i] == endptr) {