#ifndef PS_GRAPH_H #define PS_GRAPH_H #include #include "tree.h" struct graph_range { double xmin, xmax; double ymin, ymax; }; extern void ps_generate_graph(FILE *file, const struct expr_node *node, const struct graph_range *range, const char *function); #endif