mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
40 lines
1.4 KiB
C++
40 lines
1.4 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_CSTDLIB_STRTOLL_HPP
|
|
#define SPROUT_CSTDLIB_STRTOLL_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/workaround/std/cstddef.hpp>
|
|
#include <sprout/cstdlib/str_to_int.hpp>
|
|
|
|
namespace sprout {
|
|
//
|
|
// strtol
|
|
//
|
|
inline SPROUT_CONSTEXPR long long
|
|
strtoll(char const* str, char** endptr, int base = 10) {
|
|
return sprout::str_to_int<long long>(str, endptr, base);
|
|
}
|
|
template<typename Char>
|
|
inline SPROUT_CONSTEXPR long long
|
|
strtoll(Char const* str, Char** endptr, int base = 10) {
|
|
return sprout::str_to_int<long long>(str, endptr, base);
|
|
}
|
|
template<typename Char>
|
|
inline SPROUT_CONSTEXPR long long
|
|
strtoll(Char const* str, std::nullptr_t, int base = 10) {
|
|
return sprout::str_to_int<long long>(str, base);
|
|
}
|
|
template<typename Char>
|
|
inline SPROUT_CONSTEXPR long long
|
|
strtoll(Char const* str, int base = 10) {
|
|
return sprout::str_to_int<long long>(str, base);
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_CSTDLIB_STRTOLL_HPP
|