diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-05-12 11:09:20 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-05-12 11:09:20 -0300 |
commit | e924a7f9ea495df3b2311eb1a0bcb176f34d0545 (patch) | |
tree | 8764c3c54c234c5a0ac2a79c9828b5d221020f99 /lua.h | |
parent | 4fd76b8148eae1a1be43a265588bd0fc3959c33b (diff) | |
download | lua-e924a7f9ea495df3b2311eb1a0bcb176f34d0545.tar.gz lua-e924a7f9ea495df3b2311eb1a0bcb176f34d0545.tar.bz2 lua-e924a7f9ea495df3b2311eb1a0bcb176f34d0545.zip |
new API function 'lua_absindex'
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.268 2010/04/14 15:14:21 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.269 2010/05/10 13:50:20 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -129,6 +129,7 @@ LUA_API const lua_Number *(lua_version) (lua_State *L); | |||
129 | /* | 129 | /* |
130 | ** basic stack manipulation | 130 | ** basic stack manipulation |
131 | */ | 131 | */ |
132 | LUA_API int (lua_absindex) (lua_State *L, int idx); | ||
132 | LUA_API int (lua_gettop) (lua_State *L); | 133 | LUA_API int (lua_gettop) (lua_State *L); |
133 | LUA_API void (lua_settop) (lua_State *L, int idx); | 134 | LUA_API void (lua_settop) (lua_State *L, int idx); |
134 | LUA_API void (lua_pushvalue) (lua_State *L, int idx); | 135 | LUA_API void (lua_pushvalue) (lua_State *L, int idx); |