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