CB32 1.2 sources

This commit is contained in:
troyengel 2014-11-26 13:59:13 -06:00
parent cf25bc7627
commit fd87f89a19
100 changed files with 14543 additions and 0 deletions

10
Parser.h Normal file
View 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*);