diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-03-06 15:47:42 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-03-06 15:47:42 -0300 |
commit | 043c2ac2584ee14865c41cbc07addd55f284e0a3 (patch) | |
tree | 0796c645370e32ba9d6349815e32c87d5c31cf86 /lua.h | |
parent | 88a2023c3285c4514519158fba90e644fc6ffca3 (diff) | |
download | lua-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.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | ||
91 | double lua_getnumber (lua_Object object); | 91 | double lua_getnumber (lua_Object object); |
92 | char *lua_getstring (lua_Object object); | 92 | char *lua_getstring (lua_Object object); |
93 | long lua_getstrlen (lua_Object object); | 93 | long lua_strlen (lua_Object object); |
94 | lua_CFunction lua_getcfunction (lua_Object object); | 94 | lua_CFunction lua_getcfunction (lua_Object object); |
95 | void *lua_getuserdata (lua_Object object); | 95 | void *lua_getuserdata (lua_Object object); |
96 | 96 | ||
97 | 97 | ||
98 | void lua_pushnil (void); | 98 | void lua_pushnil (void); |
99 | void lua_pushnumber (double n); | 99 | void lua_pushnumber (double n); |
100 | void lua_pushlstr (char *s, long len); | 100 | void lua_pushlstring (char *s, long len); |
101 | void lua_pushstring (char *s); | 101 | void lua_pushstring (char *s); |
102 | void lua_pushCclosure (lua_CFunction fn, int n); | 102 | void lua_pushCclosure (lua_CFunction fn, int n); |
103 | void lua_pushusertag (void *u, int tag); | 103 | void lua_pushusertag (void *u, int tag); |