2012-04-14 15:48:31 +00:00
|
|
|
#ifndef SPROUT_CSTDLIB_CONVERSION_HPP
|
|
|
|
#define SPROUT_CSTDLIB_CONVERSION_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-04-15 01:31:49 +00:00
|
|
|
#include <sprout/cstdlib/ascii_to_int.hpp>
|
2012-04-14 15:48:31 +00:00
|
|
|
#include <sprout/cstdlib/str_to_int.hpp>
|
2012-04-16 02:21:40 +00:00
|
|
|
#include <sprout/cstdlib/str_to_float.hpp>
|
2012-04-14 15:48:31 +00:00
|
|
|
#include <sprout/cstdlib/atoi.hpp>
|
|
|
|
#include <sprout/cstdlib/atol.hpp>
|
2012-04-15 01:31:49 +00:00
|
|
|
#include <sprout/cstdlib/atoll.hpp>
|
2012-04-16 02:21:40 +00:00
|
|
|
#include <sprout/cstdlib/atof.hpp>
|
2012-04-14 15:48:31 +00:00
|
|
|
#include <sprout/cstdlib/strtol.hpp>
|
2012-04-15 01:31:49 +00:00
|
|
|
#include <sprout/cstdlib/strtoul.hpp>
|
|
|
|
#include <sprout/cstdlib/strtoll.hpp>
|
|
|
|
#include <sprout/cstdlib/strtoull.hpp>
|
2012-04-16 02:21:40 +00:00
|
|
|
#include <sprout/cstdlib/strtof.hpp>
|
|
|
|
#include <sprout/cstdlib/strtod.hpp>
|
|
|
|
#include <sprout/cstdlib/strtold.hpp>
|
2012-04-14 15:48:31 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CSTDLIB_CONVERSION_HPP
|