Files
lush/lex.h
Roberto Ierusalimschy 772f25d3dd new header for lex.c
1996-02-13 14:30:39 -03:00

19 lines
316 B
C

/*
** 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