CB32 1.2 sources
This commit is contained in:
parent
cf25bc7627
commit
fd87f89a19
100 changed files with 14543 additions and 0 deletions
10
Parser.h
Normal file
10
Parser.h
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
// 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*);
|
||||
Reference in a new issue