Mercurial > hg > wm
annotate Meerwald/coord.h @ 21:1c4ccd635a68 v0.6
ignore *.swp
| author | Peter Meerwald-Stadler <pmeerw@pmeerw.net> |
|---|---|
| date | Sat, 28 Jan 2023 23:57:40 +0100 |
| parents | be303a3f5ea8 |
| children |
| rev | line source |
|---|---|
| 0 | 1 #ifndef COORD_H |
| 2 #define COORD_H | |
| 3 | |
| 4 struct coord { | |
| 5 int x; | |
| 6 int y; | |
| 7 }; | |
| 8 | |
| 9 struct coords { | |
| 10 int count; | |
| 11 int max; | |
| 12 struct coord *values; | |
| 13 }; | |
| 14 | |
| 15 struct coords *alloc_coords(int n); | |
| 16 void free_coords(struct coords *c); | |
| 17 int init_coords(struct coords *c, int n); | |
| 18 int add_coord(struct coords *c, int x, int y); | |
| 19 | |
| 20 #endif |
