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