PC_graph/ps_graph.h
2025-01-04 22:24:52 +01:00

15 lines
288 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;
};
void ps_generate_graph(FILE *file, const struct expr_node *node, const struct graph_range *range, const char *function);
#endif /* PS_GRAPH_H */