diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-12-17 14:20:01 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-12-17 14:20:01 -0200 |
commit | c3a6f3fa1c6360d4ea2e32f9415f51e8e55093b4 (patch) | |
tree | 9f26c632fa0215c21260a81f6fad1a79678f8173 /lauxlib.h | |
parent | 0bbdddc86b1353fec36ae886b4142986f3c4713f (diff) | |
download | lua-c3a6f3fa1c6360d4ea2e32f9415f51e8e55093b4.tar.gz lua-c3a6f3fa1c6360d4ea2e32f9415f51e8e55093b4.tar.bz2 lua-c3a6f3fa1c6360d4ea2e32f9415f51e8e55093b4.zip |
'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len'
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.95 2009/02/13 19:39:34 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.96 2009/06/18 18:59:58 roberto Exp roberto $ |
3 | ** Auxiliary functions for building Lua libraries | 3 | ** Auxiliary functions for building Lua libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -73,6 +73,7 @@ LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s); | |||
73 | 73 | ||
74 | LUALIB_API lua_State *(luaL_newstate) (void); | 74 | LUALIB_API lua_State *(luaL_newstate) (void); |
75 | 75 | ||
76 | LUALIB_API int luaL_len (lua_State *L, int idx); | ||
76 | 77 | ||
77 | LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p, | 78 | LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p, |
78 | const char *r); | 79 | const char *r); |