lambda-calc-1/expression/parenthesis/prettyprint.h

14 lines
202 B
C

#include <stdbool.h>
struct expression;
struct color_factory;
struct stringtree* parenthesis_expression_prettyprint(
int *out_chosen_color,
struct expression* this,
bool with_color);