Move regex_t into parse.h and rename to parse_tree_t

This commit is contained in:
2024-11-03 12:20:17 +00:00
parent 1f248ad4cd
commit 656726a8c1
10 changed files with 315 additions and 328 deletions

View File

@@ -7,8 +7,8 @@
#define CONSTRUCT_H
#include "fsa.h"
#include "regex.h"
#include "parse.h"
void construct_nfa(const regex_t *regex, fsa_t *out);
void construct_nfa(const parse_tree_t *regex, fsa_t *out);
#endif