aboutsummaryrefslogtreecommitdiff
path: root/llex.h
blob: 709f98b6a304cc051ef76d2cd9fc34761fba8df1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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