summaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-01-25 14:45:36 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-01-25 14:45:36 -0200
commita53d9b66ca6247818acaf41e28cdf123082a272b (patch)
tree8e909200d4d925fc7394e6adf83cc5941456c588 /lauxlib.h
parentc8559e3c8d12e052783e2952db1372c68cc16059 (diff)
downloadlua-a53d9b66ca6247818acaf41e28cdf123082a272b.tar.gz
lua-a53d9b66ca6247818acaf41e28cdf123082a272b.tar.bz2
lua-a53d9b66ca6247818acaf41e28cdf123082a272b.zip
first implementation for type names
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lauxlib.h b/lauxlib.h
index 286460ee..c7545ba3 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -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);
36LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *msg); 36LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *msg);
37LUALIB_API void luaL_checktype (lua_State *L, int narg, int t); 37LUALIB_API void luaL_checktype (lua_State *L, int narg, int t);
38LUALIB_API void luaL_checkany (lua_State *L, int narg); 38LUALIB_API void luaL_checkany (lua_State *L, int narg);
39LUALIB_API void *luaL_check_userdata (lua_State *L, int narg, const char *name);
39 40
40LUALIB_API void luaL_verror (lua_State *L, const char *fmt, ...); 41LUALIB_API void luaL_verror (lua_State *L, const char *fmt, ...);
41LUALIB_API int luaL_findstring (const char *name, const char *const list[]); 42LUALIB_API int luaL_findstring (const char *name, const char *const list[]);