Move headers into include directories

This commit is contained in:
2024-10-26 23:42:24 +01:00
parent 2804638d84
commit 403d081e13
7 changed files with 10 additions and 10 deletions

13
lib/include/parse.h Normal file
View File

@@ -0,0 +1,13 @@
/*
* 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