lite-xl/src/api/api.c

22 lines
499 B
C
Raw Normal View History

2019-12-28 12:16:32 +01:00
#include "api.h"
int luaopen_system(lua_State *L);
int luaopen_renderer(lua_State *L);
int luaopen_regex(lua_State *L);
// int luaopen_process(lua_State *L);
2019-12-28 12:16:32 +01:00
static const luaL_Reg libs[] = {
{ "system", luaopen_system },
{ "renderer", luaopen_renderer },
{ "regex", luaopen_regex },
// { "process", luaopen_process },
2019-12-28 12:16:32 +01:00
{ NULL, NULL }
};
void api_load_libs(lua_State *L) {
2021-09-11 04:22:30 +02:00
for (int i = 0; libs[i].name; i++)
2019-12-28 12:16:32 +01:00
luaL_requiref(L, libs[i].name, libs[i].func, 1);
}