// Copyright (c) 2023, Marvin Borner // SPDX-License-Identifier: MIT #ifndef CALM_PARSE_H #define CALM_PARSE_H #include #include 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