repo.or.cz
/
hvf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
loader: remove shouting from ORB's variable name
[hvf.git]
/
cp
/
include
/
lexer.h
blob
36bd05d7d4d352c80d945aab9b8723b5f6940178
1
#ifndef __LEXER_L
2
#define __LEXER_L
3
4
#include <edf.h>
5
6
/* lexer state */
7
struct
lexer
{
8
struct
fs
*
fs
;
9
bool
init
;
10
11
struct
file
*
file
;
12
int
recno
;
13
int
recoff
;
14
15
int
buflen
;
16
int
filllen
;
17
char
buf
[
CONFIG_LRECL
*
2
];
18
char
retbuf
[
CONFIG_LRECL
+
1
];
19
};
20
21
#endif