diff options
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.3 1997/11/21 19:00:46 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.4 1997/12/09 13:35:19 roberto Exp roberto $ |
3 | ** Auxiliar functions for building Lua libraries | 3 | ** Auxiliar functions for building Lua libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -27,6 +27,13 @@ lua_Object luaL_functionarg (int arg); | |||
27 | lua_Object luaL_tablearg (int arg); | 27 | lua_Object luaL_tablearg (int arg); |
28 | lua_Object luaL_nonnullarg (int numArg); | 28 | lua_Object luaL_nonnullarg (int numArg); |
29 | void luaL_verror (char *fmt, ...); | 29 | void luaL_verror (char *fmt, ...); |
30 | char *luaL_openspace (int size); | ||
31 | void luaL_resetbuffer (void); | ||
32 | void luaL_addchar (int c); | ||
33 | void luaL_addsize (int n); | ||
34 | int luaL_newbuffer (int size); | ||
35 | void luaL_oldbuffer (int old); | ||
36 | char *luaL_buffer (void); | ||
30 | 37 | ||
31 | 38 | ||
32 | #endif | 39 | #endif |