aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-03-06 15:47:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-03-06 15:47:42 -0300
commit043c2ac2584ee14865c41cbc07addd55f284e0a3 (patch)
tree0796c645370e32ba9d6349815e32c87d5c31cf86 /lua.h
parent88a2023c3285c4514519158fba90e644fc6ffca3 (diff)
downloadlua-043c2ac2584ee14865c41cbc07addd55f284e0a3.tar.gz
lua-043c2ac2584ee14865c41cbc07addd55f284e0a3.tar.bz2
lua-043c2ac2584ee14865c41cbc07addd55f284e0a3.zip
new names for "lua_pushlstr" and "lua_getstrlen"
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua.h b/lua.h
index 90661078..47fb63aa 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.15 1998/02/12 19:23:32 roberto Exp roberto $ 2** $Id: lua.h,v 1.16 1998/03/06 16:54:42 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: lua@tecgraf.puc-rio.br 5** e-mail: lua@tecgraf.puc-rio.br
@@ -90,14 +90,14 @@ int lua_isfunction (lua_Object object);
90 90
91double lua_getnumber (lua_Object object); 91double lua_getnumber (lua_Object object);
92char *lua_getstring (lua_Object object); 92char *lua_getstring (lua_Object object);
93long lua_getstrlen (lua_Object object); 93long lua_strlen (lua_Object object);
94lua_CFunction lua_getcfunction (lua_Object object); 94lua_CFunction lua_getcfunction (lua_Object object);
95void *lua_getuserdata (lua_Object object); 95void *lua_getuserdata (lua_Object object);
96 96
97 97
98void lua_pushnil (void); 98void lua_pushnil (void);
99void lua_pushnumber (double n); 99void lua_pushnumber (double n);
100void lua_pushlstr (char *s, long len); 100void lua_pushlstring (char *s, long len);
101void lua_pushstring (char *s); 101void lua_pushstring (char *s);
102void lua_pushCclosure (lua_CFunction fn, int n); 102void lua_pushCclosure (lua_CFunction fn, int n);
103void lua_pushusertag (void *u, int tag); 103void lua_pushusertag (void *u, int tag);