1997-09-16 12:25:59 -07:00
|
|
|
/*
|
1997-11-04 07:27:53 -08:00
|
|
|
** $Id: llex.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Lexical Analizer
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef llex_h
|
|
|
|
#define llex_h
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
#include "lzio.h"
|
|
|
|
|
|
|
|
|
|
|
|
extern int luaX_linenumber;
|
|
|
|
|
1997-11-04 07:27:53 -08:00
|
|
|
|
|
|
|
void luaX_init (void);
|
1997-09-16 12:25:59 -07:00
|
|
|
int luaY_lex (void);
|
|
|
|
void luaX_setinput (ZIO *z);
|
|
|
|
char *luaX_lasttoken (void);
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|