diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-10-26 15:33:30 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-10-26 15:33:30 -0200 |
commit | 070204300ce44e7e415b299394d51d2d105a39d1 (patch) | |
tree | 849da757b6f07b33fc280ba6e1e0d42db6558895 /lauxlib.h | |
parent | 21aa7e55f2333e57b972aa4ef2c5e2785d609578 (diff) | |
download | lua-070204300ce44e7e415b299394d51d2d105a39d1.tar.gz lua-070204300ce44e7e415b299394d51d2d105a39d1.tar.bz2 lua-070204300ce44e7e415b299394d51d2d105a39d1.zip |
more consistent names for auxlib functions
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.35 2001/04/06 21:17:37 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.36 2001/07/22 00:59:36 roberto Exp $ |
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,9 +36,9 @@ LUALIB_API const lua_char *luaL_opt_lstr (lua_State *L, int numArg, | |||
36 | LUALIB_API lua_Number luaL_check_number (lua_State *L, int numArg); | 36 | LUALIB_API lua_Number luaL_check_number (lua_State *L, int numArg); |
37 | LUALIB_API lua_Number luaL_opt_number (lua_State *L, int nArg, lua_Number def); | 37 | LUALIB_API lua_Number luaL_opt_number (lua_State *L, int nArg, lua_Number def); |
38 | 38 | ||
39 | LUALIB_API void luaL_checkstack (lua_State *L, int space, const lua_char *msg); | 39 | LUALIB_API void luaL_check_stack (lua_State *L, int space, const lua_char *msg); |
40 | LUALIB_API void luaL_checktype (lua_State *L, int narg, int t); | 40 | LUALIB_API void luaL_check_rawtype (lua_State *L, int narg, int t); |
41 | LUALIB_API void luaL_checkany (lua_State *L, int narg); | 41 | LUALIB_API void luaL_check_any (lua_State *L, int narg); |
42 | LUALIB_API void *luaL_check_userdata (lua_State *L, int narg, | 42 | LUALIB_API void *luaL_check_userdata (lua_State *L, int narg, |
43 | const lua_char *name); | 43 | const lua_char *name); |
44 | 44 | ||