aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua_api.h
diff options
context:
space:
mode:
authorGravatar BanceDev 2024-09-09 10:22:06 -0400
committerGravatar BanceDev 2024-09-09 10:22:06 -0400
commit49de8d30345020c046d125c39bdf2a177b4f9e94 (patch)
treee2c03299979ff3e455739a371088d764bb770cc5 /src/lua_api.h
parentadded getenv and putenv to Lua API (diff)
added support for init.lua for configuring shell
Diffstat (limited to '')
-rw-r--r--src/lua_api.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lua_api.h b/src/lua_api.h
index c9f61ab..9027040 100644
--- a/src/lua_api.h
+++ b/src/lua_api.h
@@ -21,6 +21,7 @@ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#include <lua.h>
void lua_load_script(lua_State *L, const char *script, char **args);
+void lua_run_init(lua_State *L);
void lua_register_api(lua_State *L);
#endif