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