blob: 74958e5cd8964953255ba84f1e7c597c91485f8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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__
|