blob: 49f35e45af08085907220db0de4df1849f575724 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef PKGIT_LUA_STATE_H
#define PKGIT_LUA_STATE_H
#include <lauxlib.h>
#include <lua.h>
#include <lualib.h>
#include <stdbool.h>
extern lua_State *L;
extern bool L_is_loaded;
bool init_lua_state(void);
bool init_lua_config(void);
void free_lua_state(void);
#endif
|