aboutsummaryrefslogtreecommitdiff
path: root/inc/parse.h
blob: c36f296c1905ae8322de5e3349dc9346ac36b317 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>

#ifndef PARSE_H
#define PARSE_H

#include <term.h>

struct term *parse_blc(const char *term);
struct term *parse_bruijn(const char *term);

#endif