2012-04-15 00:48:31 +09:00
|
|
|
#ifndef SPROUT_CSTDLIB_CONVERSION_HPP
|
|
|
|
#define SPROUT_CSTDLIB_CONVERSION_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-04-15 10:31:49 +09:00
|
|
|
#include <sprout/cstdlib/ascii_to_int.hpp>
|
2012-04-15 00:48:31 +09:00
|
|
|
#include <sprout/cstdlib/str_to_int.hpp>
|
2012-04-16 11:21:40 +09:00
|
|
|
#include <sprout/cstdlib/str_to_float.hpp>
|
2012-04-15 00:48:31 +09:00
|
|
|
#include <sprout/cstdlib/atoi.hpp>
|
|
|
|
#include <sprout/cstdlib/atol.hpp>
|
2012-04-15 10:31:49 +09:00
|
|
|
#include <sprout/cstdlib/atoll.hpp>
|
2012-04-16 11:21:40 +09:00
|
|
|
#include <sprout/cstdlib/atof.hpp>
|
2012-04-15 00:48:31 +09:00
|
|
|
#include <sprout/cstdlib/strtol.hpp>
|
2012-04-15 10:31:49 +09:00
|
|
|
#include <sprout/cstdlib/strtoul.hpp>
|
|
|
|
#include <sprout/cstdlib/strtoll.hpp>
|
|
|
|
#include <sprout/cstdlib/strtoull.hpp>
|
2012-04-16 11:21:40 +09:00
|
|
|
#include <sprout/cstdlib/strtof.hpp>
|
|
|
|
#include <sprout/cstdlib/strtod.hpp>
|
|
|
|
#include <sprout/cstdlib/strtold.hpp>
|
2012-04-17 23:18:51 +09:00
|
|
|
#include <sprout/cstdlib/strtoimax.hpp>
|
|
|
|
#include <sprout/cstdlib/strtoumax.hpp>
|
2012-04-15 00:48:31 +09:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CSTDLIB_CONVERSION_HPP
|