diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-26 16:53:45 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-26 16:53:45 -0200 |
commit | 9ae0c082a350a0685a51da0f7bee3266d5c74e79 (patch) | |
tree | 08df45369191945693df85ddebb891ca9ebe9f4d /lua.h | |
parent | accd7bc25355be4350db6d117515c672121a67f2 (diff) | |
download | lua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.tar.gz lua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.tar.bz2 lua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.zip |
small details by lint.
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.3 1997/11/04 15:27:53 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.4 1997/11/19 17:29:23 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 |
@@ -85,14 +85,14 @@ int lua_isnumber (lua_Object object); | |||
85 | int lua_isstring (lua_Object object); | 85 | int lua_isstring (lua_Object object); |
86 | int lua_isfunction (lua_Object object); | 86 | int lua_isfunction (lua_Object object); |
87 | 87 | ||
88 | float lua_getnumber (lua_Object object); | 88 | double lua_getnumber (lua_Object object); |
89 | char *lua_getstring (lua_Object object); | 89 | char *lua_getstring (lua_Object object); |
90 | lua_CFunction lua_getcfunction (lua_Object object); | 90 | lua_CFunction lua_getcfunction (lua_Object object); |
91 | void *lua_getuserdata (lua_Object object); | 91 | void *lua_getuserdata (lua_Object object); |
92 | 92 | ||
93 | 93 | ||
94 | void lua_pushnil (void); | 94 | void lua_pushnil (void); |
95 | void lua_pushnumber (float n); | 95 | void lua_pushnumber (double n); |
96 | void lua_pushstring (char *s); | 96 | void lua_pushstring (char *s); |
97 | void lua_pushCclosure (lua_CFunction fn, int n); | 97 | void lua_pushCclosure (lua_CFunction fn, int n); |
98 | void lua_pushusertag (void *u, int tag); | 98 | void lua_pushusertag (void *u, int tag); |