3#ifndef TETL_CSTDLIB_STRTOL_HPP
4#define TETL_CSTDLIB_STRTOL_HPP
14[[nodiscard]]
constexpr auto strtol(
char const* str,
char const** last,
int base)
noexcept ->
long
17 if (last !=
nullptr) {
26[[nodiscard]]
constexpr auto strtoll(
char const* str,
char const** last,
int base)
noexcept ->
long long
29 if (last !=
nullptr) {
constexpr auto to_integer(string_view str, Int base=Int(10)) noexcept -> to_integer_result< Int >
Definition to_integer.hpp:93
Definition adjacent_find.hpp:8
constexpr auto strtol(char const *str, char const **last, int base) noexcept -> long
Interprets an integer value in a byte string pointed to by str.
Definition strtol.hpp:14
constexpr auto strtoll(char const *str, char const **last, int base) noexcept -> long long
Interprets an integer value in a byte string pointed to by str.
Definition strtol.hpp:26