aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/lauxlib.h b/lauxlib.h
index 1a0295d6..334ddd6e 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -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,
70LUALIB_API lua_State *(luaL_newstate) (void); 70LUALIB_API lua_State *(luaL_newstate) (void);
71 71
72 72
73LUALIB_API const char *luaL_gsub (lua_State *L, const char *s, const char *p,
74 const char *r);
75LUALIB_API const char *luaL_getfield (lua_State *L, const char *fname);
76LUALIB_API const char *luaL_setfield (lua_State *L, const char *fname);
77
78
73 79
74/* 80/*
75** =============================================================== 81** ===============================================================