mirror of
https://github.com/lua/lua.git
synced 2024-11-27 04:03:54 +08:00
22 lines
260 B
C
22 lines
260 B
C
|
/*
|
||
|
** $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
|