aboutsummaryrefslogtreecommitdiff
path: root/table.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-02-26 14:38:41 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-02-26 14:38:41 -0300
commit131d66efd2dc26b05bcb2bdaf67f5175f3eda1aa (patch)
treee912e35e04883c24e89917ee3d94b8fa574f6294 /table.h
parentbbf1b3060a1aa4e5ec3235a560d3d054457e957d (diff)
downloadlua-131d66efd2dc26b05bcb2bdaf67f5175f3eda1aa.tar.gz
lua-131d66efd2dc26b05bcb2bdaf67f5175f3eda1aa.tar.bz2
lua-131d66efd2dc26b05bcb2bdaf67f5175f3eda1aa.zip
first step in implementing internal methods.
Diffstat (limited to 'table.h')
-rw-r--r--table.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/table.h b/table.h
index bfe1a6be..42d44c07 100644
--- a/table.h
+++ b/table.h
@@ -1,7 +1,7 @@
1/* 1/*
2** Module to control static tables 2** Module to control static tables
3** TeCGraf - PUC-Rio 3** TeCGraf - PUC-Rio
4** $Id: table.h,v 2.20 1996/03/14 15:57:19 roberto Exp roberto $ 4** $Id: table.h,v 2.21 1996/04/22 18:00:37 roberto Exp roberto $
5*/ 5*/
6 6
7#ifndef table_h 7#ifndef table_h
@@ -28,6 +28,7 @@ Word luaI_findsymbolbyname (char *name);
28Word luaI_findsymbol (TaggedString *t); 28Word luaI_findsymbol (TaggedString *t);
29Word luaI_findconstant (TaggedString *t); 29Word luaI_findconstant (TaggedString *t);
30Word luaI_findconstantbyname (char *name); 30Word luaI_findconstantbyname (char *name);
31void luaI_nextvar (void);
31TaggedString *luaI_createfixedstring (char *str); 32TaggedString *luaI_createfixedstring (char *str);
32int lua_markobject (Object *o); 33int lua_markobject (Object *o);
33int luaI_ismarked (Object *o); 34int luaI_ismarked (Object *o);