diff options
author | pixel <pixel> | 2004-07-23 13:08:22 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-07-23 13:08:22 +0000 |
commit | 61a150c500fd64d1eeae74f9abb6829721261d39 (patch) | |
tree | 53bbd30dbeacde28d16a61ff79a1efed77d195f5 /lib/lua/include | |
parent | 1445e590be067844a66578f2df97ab532c1f91ac (diff) |
Adding some LUA features
Diffstat (limited to 'lib/lua/include')
-rw-r--r-- | lib/lua/include/lua.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/lua/include/lua.h b/lib/lua/include/lua.h index f525a30..109b16e 100644 --- a/lib/lua/include/lua.h +++ b/lib/lua/include/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.3 2003-12-11 16:53:28 pixel Exp $ +** $Id: lua.h,v 1.4 2004-07-23 13:08:23 pixel Exp $ ** Lua - An Extensible Extension Language ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil ** http://www.lua.org mailto:info@lua.org @@ -222,6 +222,8 @@ LUA_API int lua_next (lua_State *L, int idx); LUA_API void lua_concat (lua_State *L, int n); +LUA_API void lua_break (lua_State *L); + /* |