14 lines
202 B
C
14 lines
202 B
C
|
|
#include <stdbool.h>
|
|
|
|
struct expression;
|
|
|
|
struct color_factory;
|
|
|
|
struct stringtree* application_expression_prettyprint(
|
|
int *out_chosen_color,
|
|
struct expression* this,
|
|
bool with_color);
|
|
|
|
|
|
|