diff options
Diffstat (limited to 'inc/parse.h')
-rw-r--r-- | inc/parse.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/inc/parse.h b/inc/parse.h new file mode 100644 index 0000000..f44fd50 --- /dev/null +++ b/inc/parse.h @@ -0,0 +1,14 @@ +// Copyright (c) 2024, Marvin Borner <dev@marvinborner.de> +// SPDX-License-Identifier: MIT + +#ifndef PARSE_H +#define PARSE_H + +#include <stdio.h> + +#include <term.h> + +Term *parse_blc_fp(FILE *fp); +Term *parse_blc(const char **term); + +#endif |