aboutsummaryrefslogtreecommitdiff
path: root/inc/parse.h
blob: 9dfa3885a991da6de6a8bfdfc4e28b1622e52cdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT

#ifndef CALM_PARSE_H
#define CALM_PARSE_H

#include <lib/hash.h>
#include <term.h>

struct term_handle {
	struct term *term;
	hash_t hash;
};

struct term_handle parse_blc(char **term, size_t depth);
int parse_get_max_depth(void);

#endif