1 | #ifndef js_builtin_h |
---|---|
2 | #define js_builtin_h |
3 | |
4 | void jsB_init(js_State *J); |
5 | void jsB_initobject(js_State *J); |
6 | void jsB_initarray(js_State *J); |
7 | void jsB_initfunction(js_State *J); |
8 | void jsB_initboolean(js_State *J); |
9 | void jsB_initnumber(js_State *J); |
10 | void jsB_initstring(js_State *J); |
11 | void jsB_initregexp(js_State *J); |
12 | void jsB_initerror(js_State *J); |
13 | void jsB_initmath(js_State *J); |
14 | void jsB_initjson(js_State *J); |
15 | void jsB_initdate(js_State *J); |
16 | |
17 | void jsB_propf(js_State *J, const char *name, js_CFunction cfun, int n); |
18 | void jsB_propn(js_State *J, const char *name, double number); |
19 | void jsB_props(js_State *J, const char *name, const char *string); |
20 | |
21 | #endif |
22 |