lsnes rr2-β23
[lsnes.git] / include / library / mathexpr-format.hpp
bloba128d1b622fac0b8967a75918b278d33d46e4a87
1 #ifndef _library__mathexpr_format__hpp__included__
2 #define _library__mathexpr_format__hpp__included__
4 #include "mathexpr.hpp"
6 namespace mathexpr
8 std::string format_bool(bool v, _format fmt);
9 std::string format_unsigned(uint64_t v, _format fmt);
10 std::string format_signed(int64_t v, _format fmt);
11 std::string format_float(double v, _format fmt);
12 std::string format_complex(double vr, double vi, _format fmt);
13 std::string format_string(std::string v, _format fmt);
16 #endif