libcubescript/include/cubescript/cubescript_conf.hh

14 lines
384 B
C++
Raw Normal View History

2016-08-21 02:34:03 +02:00
#ifndef LIBCUBESCRIPT_CUBESCRIPT_CONF_HH
#define LIBCUBESCRIPT_CUBESCRIPT_CONF_HH
namespace cscript {
2017-02-13 18:10:40 +01:00
using cs_int = int;
using cs_float = float;
2016-08-21 02:34:03 +02:00
constexpr auto const CS_INT_FORMAT = "%d";
constexpr auto const CS_FLOAT_FORMAT = "%.7g";
constexpr auto const CS_ROUND_FLOAT_FORMAT = "%.1f";
2016-08-21 02:34:03 +02:00
} /* namespace cscript */
#endif /* LIBCUBESCRIPT_CUBESCRIPT_CONF_HH */