lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 772f25d3dd3c5078988b8c06ddf64c3b78f7dfb6
parent f1a1eda7c5d23776834afeb6a13ba943dbaa8870
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 13 Feb 1996 14:30:19 -0300

new header for lex.c

Diffstat:
Alex.h | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/lex.h b/lex.h @@ -0,0 +1,18 @@ +/* +** lex.h +** TecCGraf - PUC-Rio +** $Id: $ +*/ + +#ifndef lex_h +#define lex_h + + +typedef int (*Input) (void); + +void lua_setinput (Input fn); /* from "lex.c" module */ +char *lua_lasttext (void); /* from "lex.c" module */ +int luaY_lex (void); /* from "lex.c" module */ + + +#endif