PC_graph/ps_graph.h
2024-12-23 13:38:15 +01:00

14 lines
253 B
C

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