diff options
| author | iamcheeseman <[email protected]> | 2026-04-06 17:04:05 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-04-06 17:06:53 -0400 |
| commit | 957c64c7b8b5e98d8a03dd84c7e27e7991fb9dbc (patch) | |
| tree | f5fc230703791cee8d8e7851fb87eaef07ae63a2 /uscript/uscript.h | |
Initial commit
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__ |
