// Copyright (c) 2023, Marvin Borner #ifndef PARSE_H #define PARSE_H #include struct term *parse_blc(const char *term); struct term *parse_bruijn(const char *term); #endif