CAFE
Computational Analysis of gene Family Evolution
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
regexpress.h
Go to the documentation of this file.
1 #ifndef __REG_EXPRESS_H__
2 #define __REG_EXPRESS_H__
3 
4 #include<utils.h>
5 #include<utils_string.h>
6 #include<regex.h>
7 
8 extern pArrayList regex_split(char* pattern, char* string);
9 extern size_t regex_match(char* pattern, char* string, int opt, regmatch_t* match);
10 extern pArrayList regex_match_group(char* pattern, char* string, int opt, regmatch_t* match);
11 
12 #endif
pArrayList regex_match_group(char *pattern, char *string, int opt, regmatch_t *match)
Definition: regexpress.c:65
Definition: utils.h:12
pArrayList regex_split(char *pattern, char *string)
Definition: regexpress.c:4
size_t regex_match(char *pattern, char *string, int opt, regmatch_t *match)
Definition: regexpress.c:48