#ifndef ECEX_EVAL_H #define ECEX_EVAL_H #include "types.h" int ecex_eval_source(ecex_t *ed, const char *source, const char *filename, int wrap_as_statements); int ecex_eval_current_buffer(ecex_t *ed); int ecex_eval_current_line(ecex_t *ed); int ecex_eval_current_region(ecex_t *ed); int ecex_eval_file(ecex_t *ed, const char *path); int ecex_eval_rerun_last(ecex_t *ed); #endif