Struct to hold the tree formed by prefix-combining the regexes. More...
Data Fields | |
struct RegexCombineCtx ** | children |
Child nodes with same prefix and token. More... | |
unsigned int | size |
Alphabet size (how many children there are) More... | |
char * | s |
Token. More... | |
Struct to hold the tree formed by prefix-combining the regexes.
Definition at line 35 of file regex_test_lib.c.
struct RegexCombineCtx** RegexCombineCtx::children |
Child nodes with same prefix and token.
Definition at line 40 of file regex_test_lib.c.
Referenced by move_children(), and regex_add_multiple().
unsigned int RegexCombineCtx::size |
Alphabet size (how many children there are)
Definition at line 45 of file regex_test_lib.c.
Referenced by move_children().
char* RegexCombineCtx::s |
Token.
Definition at line 50 of file regex_test_lib.c.
Referenced by regex_add(), regex_add_multiple(), regex_combine(), and regex_split().