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