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