diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-11-11 15:02:40 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-11-11 15:02:40 -0200 |
commit | 573372665ab47bb6c0451ee7ca3ff5fce9b370e0 (patch) | |
tree | 248cfe8ec057fb301145fea58387b752435d3be3 /lua.h | |
parent | a6755e2f1a6b9993cfd9e94c4165c76adafbdc31 (diff) | |
download | lua-573372665ab47bb6c0451ee7ca3ff5fce9b370e0.tar.gz lua-573372665ab47bb6c0451ee7ca3ff5fce9b370e0.tar.bz2 lua-573372665ab47bb6c0451ee7ca3ff5fce9b370e0.zip |
new API function `lua_equalobj'
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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); | |||
68 | int lua_isstring (lua_Object object); | 68 | int lua_isstring (lua_Object object); |
69 | int lua_isfunction (lua_Object object); | 69 | int lua_isfunction (lua_Object object); |
70 | 70 | ||
71 | int lua_equalobj (lua_Object o1, lua_Object o2); | ||
72 | |||
71 | double lua_getnumber (lua_Object object); | 73 | double lua_getnumber (lua_Object object); |
72 | const char *lua_getstring (lua_Object object); | 74 | const char *lua_getstring (lua_Object object); |
73 | long lua_strlen (lua_Object object); | 75 | long lua_strlen (lua_Object object); |