Added tag v0.15-rc4 for changeset 2a97f14b9016
[hvf.git] / cp / include / lexer.h
blob39f1e5c5a2f4a2ffd3614c4e295dcef8807fd755
1 #ifndef __LEXER_L
2 #define __LEXER_L
4 #include <edf.h>
6 /* lexer state */
7 struct lexer {
8 struct fs *fs;
9 int init;
11 struct file *file;
12 int recno;
13 int recoff;
15 int buflen;
16 int filllen;
17 char buf[CONFIG_LRECL*2];
18 char retbuf[CONFIG_LRECL+1];
21 #endif