6 lines
152 B
C
6 lines
152 B
C
double strtod(const char *nptr, char **endptr);
|
|
|
|
long double strtold(const char *nptr, char **endptr) {
|
|
return (long double)strtod(nptr, endptr);
|
|
}
|