bsnes/nall/string/atoi.hpp

20 lines
284 B
C++

#ifdef NALL_STRING_INTERNAL_HPP
namespace nall {
auto string::integer() const -> intmax {
return nall::integer(data());
}
auto string::natural() const -> uintmax {
return nall::natural(data());
}
auto string::real() const -> double {
return nall::real(data());
}
}
#endif