diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-02-13 14:30:39 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-02-13 14:30:39 -0300 |
commit | 772f25d3dd3c5078988b8c06ddf64c3b78f7dfb6 (patch) | |
tree | cb6b9630fbfea5a1e4fcd9e7cabf7011f2fc403b | |
parent | f1a1eda7c5d23776834afeb6a13ba943dbaa8870 (diff) | |
download | lua-772f25d3dd3c5078988b8c06ddf64c3b78f7dfb6.tar.gz lua-772f25d3dd3c5078988b8c06ddf64c3b78f7dfb6.tar.bz2 lua-772f25d3dd3c5078988b8c06ddf64c3b78f7dfb6.zip |
new header for lex.c
-rw-r--r-- | lex.h | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ | |||
1 | /* | ||
2 | ** lex.h | ||
3 | ** TecCGraf - PUC-Rio | ||
4 | ** $Id: $ | ||
5 | */ | ||
6 | |||
7 | #ifndef lex_h | ||
8 | #define lex_h | ||
9 | |||
10 | |||
11 | typedef int (*Input) (void); | ||
12 | |||
13 | void lua_setinput (Input fn); /* from "lex.c" module */ | ||
14 | char *lua_lasttext (void); /* from "lex.c" module */ | ||
15 | int luaY_lex (void); /* from "lex.c" module */ | ||
16 | |||
17 | |||
18 | #endif | ||