diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-25 14:45:36 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-25 14:45:36 -0200 |
commit | a53d9b66ca6247818acaf41e28cdf123082a272b (patch) | |
tree | 8e909200d4d925fc7394e6adf83cc5941456c588 /lauxlib.h | |
parent | c8559e3c8d12e052783e2952db1372c68cc16059 (diff) | |
download | lua-a53d9b66ca6247818acaf41e28cdf123082a272b.tar.gz lua-a53d9b66ca6247818acaf41e28cdf123082a272b.tar.bz2 lua-a53d9b66ca6247818acaf41e28cdf123082a272b.zip |
first implementation for type names
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.30 2000/10/30 12:38:50 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.31 2000/12/04 18:33:40 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 | */ |
@@ -36,6 +36,7 @@ LUALIB_API lua_Number luaL_opt_number (lua_State *L, int nArg, lua_Number def); | |||
36 | LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *msg); | 36 | LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *msg); |
37 | LUALIB_API void luaL_checktype (lua_State *L, int narg, int t); | 37 | LUALIB_API void luaL_checktype (lua_State *L, int narg, int t); |
38 | LUALIB_API void luaL_checkany (lua_State *L, int narg); | 38 | LUALIB_API void luaL_checkany (lua_State *L, int narg); |
39 | LUALIB_API void *luaL_check_userdata (lua_State *L, int narg, const char *name); | ||
39 | 40 | ||
40 | LUALIB_API void luaL_verror (lua_State *L, const char *fmt, ...); | 41 | LUALIB_API void luaL_verror (lua_State *L, const char *fmt, ...); |
41 | LUALIB_API int luaL_findstring (const char *name, const char *const list[]); | 42 | LUALIB_API int luaL_findstring (const char *name, const char *const list[]); |