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

20 lines
478 B
C++

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