aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-11 15:02:40 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-11-11 15:02:40 -0200
commit573372665ab47bb6c0451ee7ca3ff5fce9b370e0 (patch)
tree248cfe8ec057fb301145fea58387b752435d3be3 /lua.h
parenta6755e2f1a6b9993cfd9e94c4165c76adafbdc31 (diff)
downloadlua-573372665ab47bb6c0451ee7ca3ff5fce9b370e0.tar.gz
lua-573372665ab47bb6c0451ee7ca3ff5fce9b370e0.tar.bz2
lua-573372665ab47bb6c0451ee7ca3ff5fce9b370e0.zip
new API function `lua_equalobj'
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index 2ba27c50..12cbb626 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.35 1999/09/29 12:56:22 roberto Exp roberto $ 2** $Id: lua.h,v 1.36 1999/10/07 19:04:30 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
@@ -68,6 +68,8 @@ int lua_isnumber (lua_Object object);
68int lua_isstring (lua_Object object); 68int lua_isstring (lua_Object object);
69int lua_isfunction (lua_Object object); 69int lua_isfunction (lua_Object object);
70 70
71int lua_equalobj (lua_Object o1, lua_Object o2);
72
71double lua_getnumber (lua_Object object); 73double lua_getnumber (lua_Object object);
72const char *lua_getstring (lua_Object object); 74const char *lua_getstring (lua_Object object);
73long lua_strlen (lua_Object object); 75long lua_strlen (lua_Object object);