From 043c2ac2584ee14865c41cbc07addd55f284e0a3 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 6 Mar 1998 15:47:42 -0300 Subject: new names for "lua_pushlstr" and "lua_getstrlen" --- lua.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 90661078..47fb63aa 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.15 1998/02/12 19:23:32 roberto Exp roberto $ +** $Id: lua.h,v 1.16 1998/03/06 16:54:42 roberto Exp roberto $ ** Lua - An Extensible Extension Language ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil ** e-mail: lua@tecgraf.puc-rio.br @@ -90,14 +90,14 @@ int lua_isfunction (lua_Object object); double lua_getnumber (lua_Object object); char *lua_getstring (lua_Object object); -long lua_getstrlen (lua_Object object); +long lua_strlen (lua_Object object); lua_CFunction lua_getcfunction (lua_Object object); void *lua_getuserdata (lua_Object object); void lua_pushnil (void); void lua_pushnumber (double n); -void lua_pushlstr (char *s, long len); +void lua_pushlstring (char *s, long len); void lua_pushstring (char *s); void lua_pushCclosure (lua_CFunction fn, int n); void lua_pushusertag (void *u, int tag); -- cgit v1.2.3-55-g6feb