blob: e79fb268465a3ed384bf7e7d4d3e9286e0914f90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT
#ifndef CALM_PARSE_H
#define CALM_PARSE_H
#include <lib/hash.h>
typedef enum { INV, ABS, APP, VAR } term_type_t;
struct term {
term_type_t type;
hash_t hash;
size_t refs;
size_t depth;
union {
struct {
struct term *term;
} abs;
struct {
struct term *lhs;
struct term *rhs;
} app;
struct {
int index;
} var;
} u;
};
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
|