lua/llex.h

24 lines
337 B
C
Raw Normal View History

1997-09-16 12:25:59 -07:00
/*
** $Id: llex.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $
1997-09-16 12:25:59 -07:00
** 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);
1997-09-16 12:25:59 -07:00
int luaY_lex (void);
void luaX_setinput (ZIO *z);
char *luaX_lasttoken (void);
#endif