diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2007-02-07 15:51:21 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2007-02-07 15:51:21 -0200 |
commit | cf86576a838dbe7a11f64116bdc9b1942d233ff8 (patch) | |
tree | efa331ab508dd45e2c8b3365a6e1728f91256cc6 /lauxlib.h | |
parent | 92dc64e1216ad9559827bdcce7bb9b0cf5d7c0ef (diff) | |
download | lua-cf86576a838dbe7a11f64116bdc9b1942d233ff8.tar.gz lua-cf86576a838dbe7a11f64116bdc9b1942d233ff8.tar.bz2 lua-cf86576a838dbe7a11f64116bdc9b1942d233ff8.zip |
new function luaL_tostring
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.87 2005/12/29 15:32:11 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.88 2006/04/12 20:31:15 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 | */ |
@@ -45,6 +45,7 @@ LUALIB_API void (luaL_register) (lua_State *L, const char *libname, | |||
45 | const luaL_Reg *l); | 45 | const luaL_Reg *l); |
46 | LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e); | 46 | LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e); |
47 | LUALIB_API int (luaL_callmeta) (lua_State *L, int obj, const char *e); | 47 | LUALIB_API int (luaL_callmeta) (lua_State *L, int obj, const char *e); |
48 | LUALIB_API const char *luaL_tostring (lua_State *L, int idx); | ||
48 | LUALIB_API int (luaL_typerror) (lua_State *L, int narg, const char *tname); | 49 | LUALIB_API int (luaL_typerror) (lua_State *L, int narg, const char *tname); |
49 | LUALIB_API int (luaL_argerror) (lua_State *L, int numarg, const char *extramsg); | 50 | LUALIB_API int (luaL_argerror) (lua_State *L, int numarg, const char *extramsg); |
50 | LUALIB_API const char *(luaL_checklstring) (lua_State *L, int numArg, | 51 | LUALIB_API const char *(luaL_checklstring) (lua_State *L, int numArg, |