diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2008-01-03 15:07:59 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2008-01-03 15:07:59 -0200 |
commit | daddc57abd31e30215922a716cb6d26422f3658b (patch) | |
tree | 9b1a5d628c40d5551595d9349e09e7aba56a88fc /lauxlib.h | |
parent | f9cdd09191e01ef38da674ef66af408d7e309d9f (diff) | |
download | lua-daddc57abd31e30215922a716cb6d26422f3658b.tar.gz lua-daddc57abd31e30215922a716cb6d26422f3658b.tar.bz2 lua-daddc57abd31e30215922a716cb6d26422f3658b.zip |
luaL_tostring -> luaL_tolstring (more generic)
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.92 2007/06/22 15:33:54 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.93 2007/06/22 15:39:34 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 | */ |
@@ -33,7 +33,7 @@ LUALIB_API void (luaL_register) (lua_State *L, const char *libname, | |||
33 | const luaL_Reg *l); | 33 | const luaL_Reg *l); |
34 | LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e); | 34 | LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e); |
35 | LUALIB_API int (luaL_callmeta) (lua_State *L, int obj, const char *e); | 35 | LUALIB_API int (luaL_callmeta) (lua_State *L, int obj, const char *e); |
36 | LUALIB_API const char *luaL_tostring (lua_State *L, int idx); | 36 | LUALIB_API const char *luaL_tolstring (lua_State *L, int idx, size_t *len); |
37 | LUALIB_API int (luaL_typerror) (lua_State *L, int narg, const char *tname); | 37 | LUALIB_API int (luaL_typerror) (lua_State *L, int narg, const char *tname); |
38 | LUALIB_API int (luaL_argerror) (lua_State *L, int numarg, const char *extramsg); | 38 | LUALIB_API int (luaL_argerror) (lua_State *L, int numarg, const char *extramsg); |
39 | LUALIB_API const char *(luaL_checklstring) (lua_State *L, int numArg, | 39 | LUALIB_API const char *(luaL_checklstring) (lua_State *L, int numArg, |