This repository has been archived on 2024-03-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ContactBook/Parser.h
2024-03-20 09:28:18 -05:00

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*);