#ifndef SPROUT_CSTDLIB_ATOL_HPP #define SPROUT_CSTDLIB_ATOL_HPP #include #include namespace sprout { // // atol // inline SPROUT_CONSTEXPR long atol(char const* str) { return sprout::decimal_to_int(str); } template inline SPROUT_CONSTEXPR int atol(Char const* str) { return sprout::decimal_to_int(str); } } // namespace sprout #endif // #ifndef SPROUT_CSTDLIB_ATOL_HPP