Lexical Analizer

This commit is contained in:
Roberto Ierusalimschy
1997-09-16 16:25:59 -03:00
parent 43a2ee6ea1
commit 60cc473bcf
3 changed files with 155 additions and 156 deletions

21
llex.h Normal file
View File

@@ -0,0 +1,21 @@
/*
** $Id: $
** Lexical Analizer
** See Copyright Notice in lua.h
*/
#ifndef llex_h
#define llex_h
#include "lobject.h"
#include "lzio.h"
extern int luaX_linenumber;
int luaY_lex (void);
void luaX_setinput (ZIO *z);
char *luaX_lasttoken (void);
#endif