Vectorization

This commit is contained in:
2022-12-27 02:57:45 +00:00
parent 147cf1b05d
commit 9a77bb75a8
7 changed files with 78 additions and 56 deletions

View File

@@ -3,6 +3,8 @@
#include "s7.h"
extern s7_scheme *s7;
void script_init();
void script_run(const char *script);
int script_dofile(const char *file);
@@ -11,6 +13,7 @@ void script_draw();
void script_editor();
void script_call(const char *f);
void script_call_sym(s7_pointer sym);
void script_call_sym_args(s7_pointer sym, s7_pointer args);
int script_has_sym(s7_pointer sym);
void script_eval_w_env(const char *s, s7_pointer env);