Initial commit
[pdp8.git] / sw / plot_hpgl / pc / optimize.h
1
2 #ifndef OPTIMIZE_H
3 #define OPTIMIZE_H
4
5 extern struct path *optimize(struct path *first_path);
6 struct path *split_paths(struct path *source);
7 struct path *join_paths(struct path *source);
8 extern void round_path(struct path *input);
9 extern int equal(struct point *a, struct point *b);
10
11 #endif