lambda-calculus/expression/lambda/prettyprint.h
2025-01-13 20:36:07 -06:00

15 lines
233 B
C

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