diff options
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.81 2005/08/15 14:12:32 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.82 2005/08/18 20:36:26 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 | */ |
@@ -84,10 +84,9 @@ LUALIB_API lua_State *(luaL_newstate) (void); | |||
84 | 84 | ||
85 | LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p, | 85 | LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, const char *p, |
86 | const char *r); | 86 | const char *r); |
87 | LUALIB_API const char *(luaL_getfield) (lua_State *L, int idx, | 87 | |
88 | const char *fname); | 88 | LUALIB_API const char *(luaL_findtable) (lua_State *L, int idx, |
89 | LUALIB_API const char *(luaL_setfield) (lua_State *L, int idx, | 89 | const char *fname); |
90 | const char *fname); | ||
91 | 90 | ||
92 | 91 | ||
93 | 92 | ||