mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2024-11-12 21:09:01 +00:00
12 lines
359 B
C++
12 lines
359 B
C++
|
#ifndef SPROUT_CSTDLIB_CONVERSION_HPP
|
||
|
#define SPROUT_CSTDLIB_CONVERSION_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
#include <sprout/cstdlib/decimal_to_int.hpp>
|
||
|
#include <sprout/cstdlib/str_to_int.hpp>
|
||
|
#include <sprout/cstdlib/atoi.hpp>
|
||
|
#include <sprout/cstdlib/atol.hpp>
|
||
|
#include <sprout/cstdlib/strtol.hpp>
|
||
|
|
||
|
#endif // #ifndef SPROUT_CSTDLIB_CONVERSION_HPP
|