mirror of
https://github.com/lua/lua
synced 2024-11-26 22:59:35 +03: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
|