diff options
author | Marvin Borner | 2024-09-07 17:53:27 +0200 |
---|---|---|
committer | Marvin Borner | 2024-09-07 17:53:27 +0200 |
commit | 05f3cde3e7924c9ffcc1937661b3cc290d89c11a (patch) | |
tree | 54eb72746f488ab794ef39a6c42b4fbdea71e9a0 /inc/parse.h | |
parent | 0aacbcf63f585634c5d5561dfcf5d16f365027d6 (diff) |
Initial bootstrap
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 |