forked from KolibriOS/kolibrios
22 lines
651 B
C
22 lines
651 B
C
|
#ifndef js_builtin_h
|
||
|
#define js_builtin_h
|
||
|
|
||
|
void jsB_init(js_State *J);
|
||
|
void jsB_initobject(js_State *J);
|
||
|
void jsB_initarray(js_State *J);
|
||
|
void jsB_initfunction(js_State *J);
|
||
|
void jsB_initboolean(js_State *J);
|
||
|
void jsB_initnumber(js_State *J);
|
||
|
void jsB_initstring(js_State *J);
|
||
|
void jsB_initregexp(js_State *J);
|
||
|
void jsB_initerror(js_State *J);
|
||
|
void jsB_initmath(js_State *J);
|
||
|
void jsB_initjson(js_State *J);
|
||
|
void jsB_initdate(js_State *J);
|
||
|
|
||
|
void jsB_propf(js_State *J, const char *name, js_CFunction cfun, int n);
|
||
|
void jsB_propn(js_State *J, const char *name, double number);
|
||
|
void jsB_props(js_State *J, const char *name, const char *string);
|
||
|
|
||
|
#endif
|