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