summaryrefslogtreecommitdiff
path: root/lex.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 /lex.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 'lex.h')
-rw-r--r--lex.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/lex.h b/lex.h
index e56dbf25..0c6b14d9 100644
--- a/lex.h
+++ b/lex.h
@@ -1,7 +1,7 @@
1/* 1/*
2** lex.h 2** lex.h
3** TecCGraf - PUC-Rio 3** TecCGraf - PUC-Rio
4** $Id: $ 4** $Id: lex.h,v 1.1 1996/02/13 17:30:39 roberto Exp roberto $
5*/ 5*/
6 6
7#ifndef lex_h 7#ifndef lex_h
@@ -10,9 +10,10 @@
10 10
11typedef int (*Input) (void); 11typedef int (*Input) (void);
12 12
13void lua_setinput (Input fn); /* from "lex.c" module */ 13void lua_setinput (Input fn);
14char *lua_lasttext (void); /* from "lex.c" module */ 14char *lua_lasttext (void);
15int luaY_lex (void); /* from "lex.c" module */ 15int luaY_lex (void);
16void luaI_addReserved (void);
16 17
17 18
18#endif 19#endif