diff options
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.47 2002/05/16 18:39:46 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.48 2002/06/03 20:11:41 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 | */ |
@@ -44,7 +44,8 @@ LUALIB_API void luaL_check_stack (lua_State *L, int space, const char *msg); | |||
44 | LUALIB_API void luaL_check_type (lua_State *L, int narg, int t); | 44 | LUALIB_API void luaL_check_type (lua_State *L, int narg, int t); |
45 | LUALIB_API void luaL_check_any (lua_State *L, int narg); | 45 | LUALIB_API void luaL_check_any (lua_State *L, int narg); |
46 | 46 | ||
47 | LUALIB_API int luaL_verror (lua_State *L, const char *fmt, ...); | 47 | LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...); |
48 | |||
48 | LUALIB_API int luaL_findstring (const char *name, | 49 | LUALIB_API int luaL_findstring (const char *name, |
49 | const char *const list[]); | 50 | const char *const list[]); |
50 | 51 | ||
@@ -117,7 +118,6 @@ LUALIB_API void luaL_pushresult (luaL_Buffer *B); | |||
117 | #define luaL_checktype luaL_check_type | 118 | #define luaL_checktype luaL_check_type |
118 | #define luaL_checkany luaL_check_any | 119 | #define luaL_checkany luaL_check_any |
119 | 120 | ||
120 | LUALIB_API int lua_call (lua_State *L, int nargs, int nresults); | ||
121 | LUALIB_API int lua_dofile (lua_State *L, const char *filename); | 121 | LUALIB_API int lua_dofile (lua_State *L, const char *filename); |
122 | LUALIB_API int lua_dostring (lua_State *L, const char *str); | 122 | LUALIB_API int lua_dostring (lua_State *L, const char *str); |
123 | LUALIB_API int lua_dobuffer (lua_State *L, const char *buff, size_t size, | 123 | LUALIB_API int lua_dobuffer (lua_State *L, const char *buff, size_t size, |