10 lines
216 B
C
10 lines
216 B
C
// parser.h - Parser implementation file
|
|
|
|
// states
|
|
#define IN_WHITE 0
|
|
#define IN_TOKEN 1
|
|
#define IN_QUOTE 2
|
|
#define IN_OZONE 3
|
|
|
|
int parser(int,char*,int,char*,char*,
|
|
char*,char*,char,char*,int*,char*);
|