#ifndef SPROUT_CSTDLIB_ATOI_HPP #define SPROUT_CSTDLIB_ATOI_HPP #include #include namespace sprout { // // atoi // inline SPROUT_CONSTEXPR int atoi(char const* str) { return sprout::ascii_to_int(str); } template inline SPROUT_CONSTEXPR int atoi(Char const* str) { return sprout::ascii_to_int(str); } } // namespace sprout #endif // #ifndef SPROUT_CSTDLIB_ATOI_HPP