15 lines
233 B
C
15 lines
233 B
C
/*
|
|
* Copyright (c) Camden Dixie O'Brien
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
#ifndef CONSTRUCT_H
|
|
#define CONSTRUCT_H
|
|
|
|
#include "fsa.h"
|
|
#include "parse.h"
|
|
|
|
void construct_nfa(const parse_tree_t *regex, fsa_t *out);
|
|
|
|
#endif
|