diff options
Diffstat (limited to 'src/tuplr.hpp')
-rw-r--r-- | src/tuplr.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tuplr.hpp b/src/tuplr.hpp index c3c30c4..c31e000 100644 --- a/src/tuplr.hpp +++ b/src/tuplr.hpp @@ -640,6 +640,7 @@ struct Engine { }; Engine* tuplr_new_llvm_engine(); +Engine* tuplr_new_c_engine(); /// Compile-Time Environment struct CEnv { @@ -692,7 +693,7 @@ private: void pprint(std::ostream& out, const AST* ast); void initLang(PEnv& penv, TEnv& tenv); -int eval(CEnv& cenv, const string& name, istream& is); +int eval(CEnv& cenv, const string& name, istream& is, bool execute); int repl(CEnv& cenv); #endif // TUPLR_HPP |