#ifndef SPROUT_CSTDLIB_ATOF_HPP #define SPROUT_CSTDLIB_ATOF_HPP #include #include namespace sprout { // // atof // template inline SPROUT_CONSTEXPR double atof(Char const* str) { return sprout::str_to_float(str); } } // namespace sprout #endif // #ifndef SPROUT_CSTDLIB_ATOF_HPP