diff options
Diffstat (limited to 'uscript/uscript.h')
| -rw-r--r-- | uscript/uscript.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/uscript/uscript.h b/uscript/uscript.h new file mode 100644 index 0000000..74958e5 --- /dev/null +++ b/uscript/uscript.h @@ -0,0 +1,14 @@ +#ifndef __USCRIPT_LANG_H__ +#define __USCRIPT_LANG_H__ + +struct us_func; + +void us_init(void); +void us_deinit(void); + +void us_load_file(const char *file); +void us_load_src(const char *src); + +void us_exec(struct us_func *func); + +#endif // __USCRIPT_LANG_H__ |
