Sprout/sprout/cstdlib/atol.hpp
bolero-MURAKAMI 28f7c510a5 add cwchar.hpp
rename decimal_to_int -> ascii_to_int
2012-04-15 10:31:49 +09:00

20 lines
482 B
C++

#ifndef SPROUT_CSTDLIB_ATOL_HPP
#define SPROUT_CSTDLIB_ATOL_HPP
#include <sprout/config.hpp>
#include <sprout/cstdlib/ascii_to_int.hpp>
namespace sprout {
//
// atol
//
inline SPROUT_CONSTEXPR long atol(char const* str) {
return sprout::ascii_to_int<long>(str);
}
template<typename Char>
inline SPROUT_CONSTEXPR long atol(Char const* str) {
return sprout::ascii_to_int<long>(str);
}
} // namespace sprout
#endif // #ifndef SPROUT_CSTDLIB_ATOL_HPP