X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Fcalc.h;h=21ece7b4319aa984704a1aa02e0e1527dbff6c3e;hp=d294cfbb14dc6057c2ff252911738a74837cf1ad;hb=216e7ac3b97aed5a5d65c511dc061c78be90e79d;hpb=9bcb1df0786a8193d65949c857baaba2f4296e84 diff --git a/src/calc.h b/src/calc.h index d294cfb..21ece7b 100644 --- a/src/calc.h +++ b/src/calc.h @@ -27,11 +27,20 @@ #define PSI_CALC_H #include "token.h" -#include "impl_val.h" +#include "types/impl_val.h" -token_t psi_calc_add(token_t t1, impl_val *v1, token_t t2, impl_val *v2, impl_val *res); -token_t psi_calc_sub(token_t t1, impl_val *v1, token_t t2, impl_val *v2, impl_val *res); -token_t psi_calc_mul(token_t t1, impl_val *v1, token_t t2, impl_val *v2, impl_val *res); -token_t psi_calc_div(token_t t1, impl_val *v1, token_t t2, impl_val *v2, impl_val *res); +#define PRIfval ".13gF" +#define PRIdval ".53lg" +#define PRIldval ".64LgL" + +typedef token_t (*psi_calc)(token_t t1, impl_val *v1, token_t t2, impl_val *v2, impl_val *res); + +#include "calc/basic.h" +#include "calc/bin.h" +#include "calc/bool.h" +#include "calc/unary.h" +#include "calc/cast.h" +#include "calc/cmp.h" +#include "calc/oper.h" #endif