new API function `lua_equalobj'

This commit is contained in:
Roberto Ierusalimschy
1999-11-11 15:02:40 -02:00
parent a6755e2f1a
commit 573372665a
3 changed files with 18 additions and 7 deletions

4
lua.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: lua.h,v 1.35 1999/09/29 12:56:22 roberto Exp roberto $
** $Id: lua.h,v 1.36 1999/10/07 19:04:30 roberto Exp roberto $
** Lua - An Extensible Extension Language
** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
** e-mail: lua@tecgraf.puc-rio.br
@@ -68,6 +68,8 @@ int lua_isnumber (lua_Object object);
int lua_isstring (lua_Object object);
int lua_isfunction (lua_Object object);
int lua_equalobj (lua_Object o1, lua_Object o2);
double lua_getnumber (lua_Object object);
const char *lua_getstring (lua_Object object);
long lua_strlen (lua_Object object);