16 lines
232 B
C

/*
* Copyright (c) Camden Dixie O'Brien
* SPDX-License-Identifier: AGPL-3.0-only
*/
#ifndef PARSE_H
#define PARSE_H
#include "regex.h"
#define PARSE_FAIL (-1)
int parse_expr(const char *input, int rem, regex_t *out);
#endif