diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-10-05 13:44:33 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-10-05 13:44:33 -0300 |
commit | a5382b763c2faa4c47e55ee0e49889b4c47daac4 (patch) | |
tree | d5f4ea49f2343593ced46ce303783baf0cb2cd56 /lua.h | |
parent | ba21aa8b2b29f516f1f488f996fc899c62f7105b (diff) | |
download | lua-a5382b763c2faa4c47e55ee0e49889b4c47daac4.tar.gz lua-a5382b763c2faa4c47e55ee0e49889b4c47daac4.tar.bz2 lua-a5382b763c2faa4c47e55ee0e49889b4c47daac4.zip |
new function lua_copy
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.243 2009/09/17 18:04:21 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.244 2009/09/21 12:09:52 roberto Exp roberto $ |
3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension 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 |
@@ -135,6 +135,7 @@ LUA_API void (lua_pushvalue) (lua_State *L, int idx); | |||
135 | LUA_API void (lua_remove) (lua_State *L, int idx); | 135 | LUA_API void (lua_remove) (lua_State *L, int idx); |
136 | LUA_API void (lua_insert) (lua_State *L, int idx); | 136 | LUA_API void (lua_insert) (lua_State *L, int idx); |
137 | LUA_API void (lua_replace) (lua_State *L, int idx); | 137 | LUA_API void (lua_replace) (lua_State *L, int idx); |
138 | LUA_API void (lua_copy) (lua_State *L, int fromidx, int toidx); | ||
138 | LUA_API int (lua_checkstack) (lua_State *L, int sz); | 139 | LUA_API int (lua_checkstack) (lua_State *L, int sz); |
139 | 140 | ||
140 | LUA_API void (lua_xmove) (lua_State *from, lua_State *to, int n); | 141 | LUA_API void (lua_xmove) (lua_State *from, lua_State *to, int n); |