aboutsummaryrefslogtreecommitdiff
path: root/table.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-14 10:35:51 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-14 10:35:51 -0300
commitd1608c597e2f45021d43c56050aff08e5d417699 (patch)
treee6b0a07e68384cd9707e7dda6864dd8664e2ee99 /table.h
parent0f4903a5d79fb594115c5603072d0dce77b2b84e (diff)
downloadlua-d1608c597e2f45021d43c56050aff08e5d417699.tar.gz
lua-d1608c597e2f45021d43c56050aff08e5d417699.tar.bz2
lua-d1608c597e2f45021d43c56050aff08e5d417699.zip
reserved words are stored in main string table; "marked" field is
used to indicate its type. Table initializations centralized by "tree.c".
Diffstat (limited to 'table.h')
-rw-r--r--table.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/table.h b/table.h
index 37085fec..6b4b9d3d 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.16 1996/02/06 16:18:21 roberto Exp roberto $ 4** $Id: table.h,v 2.17 1996/02/12 18:32:40 roberto Exp roberto $
5*/ 5*/
6 6
7#ifndef table_h 7#ifndef table_h
@@ -20,7 +20,8 @@ typedef struct
20extern Symbol *lua_table; 20extern Symbol *lua_table;
21extern TaggedString **lua_constant; 21extern TaggedString **lua_constant;
22 22
23void lua_initconstant (void); 23void luaI_initsymbol (void);
24void luaI_initconstant (void);
24Word luaI_findsymbolbyname (char *name); 25Word luaI_findsymbolbyname (char *name);
25Word luaI_findsymbol (TaggedString *t); 26Word luaI_findsymbol (TaggedString *t);
26Word luaI_findconstant (TaggedString *t); 27Word luaI_findconstant (TaggedString *t);