diff options
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.69 2004/06/30 12:58:44 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.70 2004/07/09 18:23:17 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 | */ |
@@ -70,6 +70,12 @@ LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t sz, | |||
70 | LUALIB_API lua_State *(luaL_newstate) (void); | 70 | LUALIB_API lua_State *(luaL_newstate) (void); |
71 | 71 | ||
72 | 72 | ||
73 | LUALIB_API const char *luaL_gsub (lua_State *L, const char *s, const char *p, | ||
74 | const char *r); | ||
75 | LUALIB_API const char *luaL_getfield (lua_State *L, const char *fname); | ||
76 | LUALIB_API const char *luaL_setfield (lua_State *L, const char *fname); | ||
77 | |||
78 | |||
73 | 79 | ||
74 | /* | 80 | /* |
75 | ** =============================================================== | 81 | ** =============================================================== |