strtod
extern double strtod(const char *string, char **end);
fValue.Float = strtod(string, &string);
fValue.Double = strtod(string, &string);
float value = strtod(number, NULL);
double value = strtod(number, NULL);
floatValue = strtod(value, NULL);
t = strtod(optarg, &ep) * 1000.0;
t = strtod(optarg, &ep);
t = strtod(optarg, &e);
t = strtod(optarg, &e);
refresh = strtod(argv[depthIndex + 1], NULL);
volume = strtod(argv[1], &end);
double parsedValue = strtod(text, &parseEnd);
return strtod(buffer, NULL);
return strtod(Content(), NULL);
return strtod(number, _end);
extern "C" double strtod(const char *s00, char **se);
# define STRTOF strtod
return strtod(num, NULL);