aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-10-05 13:44:33 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-10-05 13:44:33 -0300
commita5382b763c2faa4c47e55ee0e49889b4c47daac4 (patch)
treed5f4ea49f2343593ced46ce303783baf0cb2cd56 /lua.h
parentba21aa8b2b29f516f1f488f996fc899c62f7105b (diff)
downloadlua-a5382b763c2faa4c47e55ee0e49889b4c47daac4.tar.gz
lua-a5382b763c2faa4c47e55ee0e49889b4c47daac4.tar.bz2
lua-a5382b763c2faa4c47e55ee0e49889b4c47daac4.zip
new function lua_copy
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index e440e30c..478374e3 100644
--- a/lua.h
+++ b/lua.h
@@ -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);
135LUA_API void (lua_remove) (lua_State *L, int idx); 135LUA_API void (lua_remove) (lua_State *L, int idx);
136LUA_API void (lua_insert) (lua_State *L, int idx); 136LUA_API void (lua_insert) (lua_State *L, int idx);
137LUA_API void (lua_replace) (lua_State *L, int idx); 137LUA_API void (lua_replace) (lua_State *L, int idx);
138LUA_API void (lua_copy) (lua_State *L, int fromidx, int toidx);
138LUA_API int (lua_checkstack) (lua_State *L, int sz); 139LUA_API int (lua_checkstack) (lua_State *L, int sz);
139 140
140LUA_API void (lua_xmove) (lua_State *from, lua_State *to, int n); 141LUA_API void (lua_xmove) (lua_State *from, lua_State *to, int n);