diff options
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.107 2010/06/30 17:40:27 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.108 2010/07/02 11:38:13 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,6 +44,9 @@ LUALIB_API lua_Number (luaL_optnumber) (lua_State *L, int nArg, lua_Number def); | |||
44 | LUALIB_API lua_Integer (luaL_checkinteger) (lua_State *L, int numArg); | 44 | LUALIB_API lua_Integer (luaL_checkinteger) (lua_State *L, int numArg); |
45 | LUALIB_API lua_Integer (luaL_optinteger) (lua_State *L, int nArg, | 45 | LUALIB_API lua_Integer (luaL_optinteger) (lua_State *L, int nArg, |
46 | lua_Integer def); | 46 | lua_Integer def); |
47 | LUALIB_API lua_Unsigned (luaL_checkunsigned) (lua_State *L, int numArg); | ||
48 | LUALIB_API lua_Unsigned (luaL_optunsigned) (lua_State *L, int numArg, | ||
49 | lua_Unsigned def); | ||
47 | 50 | ||
48 | LUALIB_API void (luaL_checkstack) (lua_State *L, int sz, const char *msg); | 51 | LUALIB_API void (luaL_checkstack) (lua_State *L, int sz, const char *msg); |
49 | LUALIB_API void (luaL_checktype) (lua_State *L, int narg, int t); | 52 | LUALIB_API void (luaL_checktype) (lua_State *L, int narg, int t); |