aboutsummaryrefslogtreecommitdiff
path: root/llex.h
blob: f6f7c18e8aefdca7c0967e174263c2c451b00337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
** $Id: llex.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $
** Lexical Analizer
** See Copyright Notice in lua.h
*/

#ifndef llex_h
#define llex_h

#include "lobject.h"
#include "lzio.h"


extern int luaX_linenumber;


void luaX_init (void);
int  luaY_lex (void);
void luaX_setinput (ZIO *z);
char *luaX_lasttoken (void);


#endif