diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-02 17:10:55 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-02 17:10:55 -0300 |
commit | f6834f4393eaa1055c2bbde82ebb33cc58be8371 (patch) | |
tree | 3583008ef181106d0fc7e130300f12adc70a5854 /lauxlib.h | |
parent | 78bc8e553d4190fc3b90be5b621fc0f3507586ef (diff) | |
download | lua-f6834f4393eaa1055c2bbde82ebb33cc58be8371.tar.gz lua-f6834f4393eaa1055c2bbde82ebb33cc58be8371.tar.bz2 lua-f6834f4393eaa1055c2bbde82ebb33cc58be8371.zip |
new API function `lua_type' + new type lua_Type
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.24 2000/09/11 20:29:27 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.25 2000/09/12 13:48:22 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 | */ |
@@ -30,7 +30,8 @@ double luaL_check_number (lua_State *L, int numArg); | |||
30 | double luaL_opt_number (lua_State *L, int numArg, double def); | 30 | double luaL_opt_number (lua_State *L, int numArg, double def); |
31 | 31 | ||
32 | void luaL_checkstack (lua_State *L, int space, const char *msg); | 32 | void luaL_checkstack (lua_State *L, int space, const char *msg); |
33 | void luaL_checktype (lua_State *L, int narg, const char *tname); | 33 | void luaL_checktype (lua_State *L, int narg, lua_Type t); |
34 | void luaL_checkany (lua_State *L, int narg); | ||
34 | 35 | ||
35 | void luaL_verror (lua_State *L, const char *fmt, ...); | 36 | void luaL_verror (lua_State *L, const char *fmt, ...); |
36 | int luaL_findstring (const char *name, const char *const list[]); | 37 | int luaL_findstring (const char *name, const char *const list[]); |