Home
last modified time | relevance | path

Searched refs:endptr (Results 1 – 2 of 2) sorted by relevance

/coreutils/gl/lib/
Dcl-strtod.c59 CL_STRTOD (char const *nptr, char **restrict endptr) in CL_STRTOD() argument
73 if (endptr) in CL_STRTOD()
74 *endptr = end; in CL_STRTOD()
/coreutils/src/
Dnumfmt.c479 char **endptr, long double *value, bool *negative) in simple_strtod_int() argument
495 *endptr = (char *) input_str; in simple_strtod_int()
496 while (c_isdigit (**endptr)) in simple_strtod_int()
498 int digit = (**endptr) - '0'; in simple_strtod_int()
514 ++(*endptr); in simple_strtod_int()
517 && ! STREQ_LEN (*endptr, decimal_point, decimal_point_length)) in simple_strtod_int()
544 char **endptr, in simple_strtod_float() argument
555 e = simple_strtod_int (input_str, endptr, value, &negative); in simple_strtod_float()
560 if (STREQ_LEN (*endptr, decimal_point, decimal_point_length)) in simple_strtod_float()
566 (*endptr) += decimal_point_length; in simple_strtod_float()
[all …]