#ifndef SPROUT_CSTDLIB_STRTTOUMAX_HPP #define SPROUT_CSTDLIB_STRTTOUMAX_HPP #include #include #include #include namespace sprout { // // strtoumax // inline SPROUT_CONSTEXPR std::uintmax_t strtoumax(char const* str, char** endptr, int base = 10){ return sprout::str_to_int(str, endptr, base); } template inline SPROUT_CONSTEXPR std::uintmax_t strtoumax(Char const* str, Char** endptr, int base = 10){ return sprout::str_to_int(str, endptr, base); } template inline SPROUT_CONSTEXPR std::uintmax_t strtoumax(Char const* str, std::nullptr_t endptr, int base = 10){ return sprout::str_to_int(str, base); } template inline SPROUT_CONSTEXPR std::uintmax_t strtoumax(Char const* str, int base = 10){ return sprout::str_to_int(str, base); } } // namespace sprout #endif // #ifndef SPROUT_CSTDLIB_STRTTOUMAX_HPP