aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-26 16:53:45 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-26 16:53:45 -0200
commit9ae0c082a350a0685a51da0f7bee3266d5c74e79 (patch)
tree08df45369191945693df85ddebb891ca9ebe9f4d /lua.h
parentaccd7bc25355be4350db6d117515c672121a67f2 (diff)
downloadlua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.tar.gz
lua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.tar.bz2
lua-9ae0c082a350a0685a51da0f7bee3266d5c74e79.zip
small details by lint.
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 48fd80cf..23a30cbe 100644
--- a/lua.h
+++ b/lua.h
@@ -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);
85int lua_isstring (lua_Object object); 85int lua_isstring (lua_Object object);
86int lua_isfunction (lua_Object object); 86int lua_isfunction (lua_Object object);
87 87
88float lua_getnumber (lua_Object object); 88double lua_getnumber (lua_Object object);
89char *lua_getstring (lua_Object object); 89char *lua_getstring (lua_Object object);
90lua_CFunction lua_getcfunction (lua_Object object); 90lua_CFunction lua_getcfunction (lua_Object object);
91void *lua_getuserdata (lua_Object object); 91void *lua_getuserdata (lua_Object object);
92 92
93 93
94void lua_pushnil (void); 94void lua_pushnil (void);
95void lua_pushnumber (float n); 95void lua_pushnumber (double n);
96void lua_pushstring (char *s); 96void lua_pushstring (char *s);
97void lua_pushCclosure (lua_CFunction fn, int n); 97void lua_pushCclosure (lua_CFunction fn, int n);
98void lua_pushusertag (void *u, int tag); 98void lua_pushusertag (void *u, int tag);