From Lua 5.2: Add lua_version().

Contributed by François Perrad.
This commit is contained in:
Mike Pall
2017-04-07 12:21:41 +02:00
parent 9c685f7003
commit c67a098292
2 changed files with 8 additions and 0 deletions

View File

@@ -348,6 +348,7 @@ LUA_API void *lua_upvalueid (lua_State *L, int idx, int n);
LUA_API void lua_upvaluejoin (lua_State *L, int idx1, int n1, int idx2, int n2);
LUA_API int lua_loadx (lua_State *L, lua_Reader reader, void *dt,
const char *chunkname, const char *mode);
LUA_API const lua_Number *lua_version (lua_State *L);
struct lua_Debug {