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

13 lines
209 B
C

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