diff options
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.38 2001/10/31 19:40:14 roberto Exp $ | 2 | ** $Id: lauxlib.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ |
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 | */ |
@@ -38,10 +38,8 @@ LUALIB_API lua_Number luaL_check_number (lua_State *L, int numArg); | |||
38 | LUALIB_API lua_Number luaL_opt_number (lua_State *L, int nArg, lua_Number def); | 38 | LUALIB_API lua_Number luaL_opt_number (lua_State *L, int nArg, lua_Number def); |
39 | 39 | ||
40 | LUALIB_API void luaL_check_stack (lua_State *L, int space, const char *msg); | 40 | LUALIB_API void luaL_check_stack (lua_State *L, int space, const char *msg); |
41 | LUALIB_API void luaL_check_rawtype (lua_State *L, int narg, int t); | 41 | LUALIB_API void luaL_check_type (lua_State *L, int narg, int t); |
42 | LUALIB_API void luaL_check_any (lua_State *L, int narg); | 42 | LUALIB_API void luaL_check_any (lua_State *L, int narg); |
43 | LUALIB_API void *luaL_check_userdata (lua_State *L, int narg, | ||
44 | const char *name); | ||
45 | 43 | ||
46 | LUALIB_API void luaL_verror (lua_State *L, const char *fmt, ...); | 44 | LUALIB_API void luaL_verror (lua_State *L, const char *fmt, ...); |
47 | LUALIB_API int luaL_findstring (const char *name, | 45 | LUALIB_API int luaL_findstring (const char *name, |