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