/* @@@HEAD@@@ // Declarations for the pattern matcher. */ #ifndef _match_h_ #define _match_h_ #include "data.h" void init_match(void); list_t * match_template(char * ctemplate, char * s); list_t * match_pattern(char * pattern, char * s); #endif