/** parse the given config file and add rules to matcher */
bool config_parse(Matcher *matcher, char *file);
/**
* convert escaped sequence in str in string form into single char.
* converts "\\n" to '\n', "\\r" to '\r', "\\t" to '\t'.
*/
char *config_convert_escaped(char *str);
|