// Copyright (c) 2024, Marvin Borner // SPDX-License-Identifier: MIT #ifndef PARSE_H #define PARSE_H #include #include Term *parse_blc_fp(FILE *fp); Term *parse_blc(const char **term); #endif