| 15 | enum LuaStatus { LUA_OK, LUA_YIELD, LUA_ERRRUN, LUA_ERRSYNTAX, LUA_ERRMEM, LUA_ERRGCMM, LUA_ERRERR }; |
| 16 | |
| 17 | struct lua_State; |
| 18 | lua_State* luaL_newstate(); |
| 19 | void luaL_openlibs(lua_State*); |
| 20 | void lua_close(lua_State*); |
nothing calls this directly
no outgoing calls
no test coverage detected