mirror of
https://github.com/lua/lua
synced 2025-02-08 17:23:59 +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
|