14 lines
209 B
C

/*
* Copyright (c) Camden Dixie O'Brien
* SPDX-License-Identifier: AGPL-3.0-only
*/
#ifndef COMPILE_H
#define COMPILE_H
#include "fsa.h"
bool compile(const char *regex, int len, fsa_t *dfa_out);
#endif