aboutsummaryrefslogtreecommitdiff
path: root/inc/parse.h
blob: f44fd5072c8b4e0c4a64a8ef012907ef46df27ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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