diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-11-25 15:50:14 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-11-25 15:50:14 -0200 |
commit | 5a228bb1d8585022dbcd569259c6a9efcd0ddd3c (patch) | |
tree | 5602576fd27ab3e8637297b30f05f4e2adabcacd | |
parent | 5f698f8b6f7e5fb18e0a7386dc506b0d5b538e6b (diff) | |
download | lua-5a228bb1d8585022dbcd569259c6a9efcd0ddd3c.tar.gz lua-5a228bb1d8585022dbcd569259c6a9efcd0ddd3c.tar.bz2 lua-5a228bb1d8585022dbcd569259c6a9efcd0ddd3c.zip |
new function `lua_version'
-rw-r--r-- | lapi.c | 7 | ||||
-rw-r--r-- | lua.h | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lapi.c,v 1.222 2002/11/21 15:16:04 roberto Exp roberto $ | 2 | ** $Id: lapi.c,v 1.223 2002/11/25 11:16:48 roberto Exp roberto $ |
3 | ** Lua API | 3 | ** Lua API |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -733,6 +733,11 @@ LUA_API void lua_setgcthreshold (lua_State *L, int newthreshold) { | |||
733 | */ | 733 | */ |
734 | 734 | ||
735 | 735 | ||
736 | LUA_API const char *lua_version (void) { | ||
737 | return LUA_VERSION; | ||
738 | } | ||
739 | |||
740 | |||
736 | LUA_API int lua_error (lua_State *L) { | 741 | LUA_API int lua_error (lua_State *L) { |
737 | lua_lock(L); | 742 | lua_lock(L); |
738 | api_checknelems(L, 1); | 743 | api_checknelems(L, 1); |
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.165 2002/11/18 11:01:55 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.166 2002/11/25 17:47:13 roberto Exp roberto $ |
3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil | 4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil |
5 | ** http://www.lua.org mailto:info@lua.org | 5 | ** http://www.lua.org mailto:info@lua.org |
@@ -215,6 +215,8 @@ LUA_API void lua_setgcthreshold (lua_State *L, int newthreshold); | |||
215 | ** miscellaneous functions | 215 | ** miscellaneous functions |
216 | */ | 216 | */ |
217 | 217 | ||
218 | LUA_API const char *lua_version (void); | ||
219 | |||
218 | LUA_API int lua_error (lua_State *L); | 220 | LUA_API int lua_error (lua_State *L); |
219 | 221 | ||
220 | LUA_API int lua_next (lua_State *L, int idx); | 222 | LUA_API int lua_next (lua_State *L, int idx); |