Mercurial > hg > wm
view Meerwald-dir/coord.h @ 25:5a57a145bccb default tip
Added tag v0.7 for changeset 9f20bce6184e
author | Peter Meerwald-Stadler <pmeerw@pmeerw.net> |
---|---|
date | Fri, 20 Dec 2024 13:32:15 +0100 |
parents | 9f20bce6184e |
children |
line wrap: on
line source
#ifndef COORD_H #define COORD_H struct coord { int x; int y; }; struct coords { int count; int max; struct coord *values; }; struct coords *alloc_coords(int n); void free_coords(struct coords *c); int init_coords(struct coords *c, int n); int add_coord(struct coords *c, int x, int y); #endif