13 #define STAR_NUMBER 16
14 #define KEYWORD_NUMBER 256
22 const char * keyword[KEYWORD_NUMBER];
27 extern char * Star[STAR_NUMBER];
31 extern bool match (char string[], const char pattern[]);
33 extern void parse_open (parse_t * parse, const char string[]);
34 extern void parse_close (parse_t * parse);
36 extern void parse_add_keyword (parse_t * parse, const char keyword[]);
38 extern bool parse_get_word (parse_t * parse, char string[], int size);
39 extern bool parse_get_string (parse_t * parse, char string[], int size);
41 #endif // !defined PARSE_H