libcubescript/cs_util.hh
2016-08-15 18:55:22 +01:00

19 lines
368 B
C++

#ifndef LIBCUBESCRIPT_CS_UTIL_HH
#define LIBCUBESCRIPT_CS_UTIL_HH
#include <ostd/string.hh>
namespace cscript {
CsInt cs_parse_int(
ostd::ConstCharRange input, ostd::ConstCharRange *end = nullptr
);
CsFloat cs_parse_float(
ostd::ConstCharRange input, ostd::ConstCharRange *end = nullptr
);
} /* namespace cscript */
#endif /* LIBCUBESCRIPT_CS_UTIL_HH */