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

14 lines
197 B
C

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