2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2012-04-15 01:31:49 +00:00
|
|
|
#ifndef SPROUT_CSTDLIB_STRTOLL_HPP
|
|
|
|
#define SPROUT_CSTDLIB_STRTOLL_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2014-04-30 07:30:26 +00:00
|
|
|
#include <sprout/workaround/std/cstddef.hpp>
|
2012-04-15 01:31:49 +00:00
|
|
|
#include <sprout/cstdlib/str_to_int.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// strtol
|
|
|
|
//
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR long long
|
|
|
|
strtoll(char const* str, char** endptr, int base = 10) {
|
2012-04-15 01:31:49 +00:00
|
|
|
return sprout::str_to_int<long long>(str, endptr, base);
|
|
|
|
}
|
|
|
|
template<typename Char>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR long long
|
|
|
|
strtoll(Char const* str, Char** endptr, int base = 10) {
|
2012-04-15 01:31:49 +00:00
|
|
|
return sprout::str_to_int<long long>(str, endptr, base);
|
|
|
|
}
|
|
|
|
template<typename Char>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR long long
|
2013-07-22 13:00:09 +00:00
|
|
|
strtoll(Char const* str, std::nullptr_t, int base = 10) {
|
2012-04-15 01:31:49 +00:00
|
|
|
return sprout::str_to_int<long long>(str, base);
|
|
|
|
}
|
|
|
|
template<typename Char>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR long long
|
|
|
|
strtoll(Char const* str, int base = 10) {
|
2012-04-15 01:31:49 +00:00
|
|
|
return sprout::str_to_int<long long>(str, base);
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CSTDLIB_STRTOLL_HPP
|