mirror of
https://github.com/lua/lua.git
synced 2025-01-28 06:03:00 +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
|