1 2 3 4 5 6
#include <stdlib.h> long double string_to_ld(const char *nptr, char **endptr) { return strtold(nptr, endptr); }