Rename construct to construct_nfa and improve tests

This commit is contained in:
2024-10-27 17:57:13 +00:00
parent 55e4e4f5ee
commit d35fa4e9da
3 changed files with 62 additions and 73 deletions

View File

@@ -9,6 +9,6 @@
#include "fsa.h"
#include "regex.h"
void construct(const regex_t *regex, fsa_t *out);
void construct_nfa(const regex_t *regex, fsa_t *out);
#endif