Sprout/sprout/cstdlib/strtol.hpp

41 lines
1.3 KiB
C++
Raw Normal View History

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