diff options
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); |