#ifndef SPROUT_CSTDLIB_STRTOLD_HPP #define SPROUT_CSTDLIB_STRTOLD_HPP #include #include #include namespace sprout { // // strtold // template inline SPROUT_CONSTEXPR long double strtold(Char const* str, Char** endptr) { return sprout::str_to_float(str, endptr); } template inline SPROUT_CONSTEXPR long double strtold(Char const* str, std::nullptr_t endptr) { return sprout::str_to_float(str); } template inline SPROUT_CONSTEXPR long double strtold(Char const* str) { return sprout::str_to_float(str); } } // namespace sprout #endif // #ifndef SPROUT_CSTDLIB_STRTOLD_HPP