Mercurial > hg > wm
annotate Meerwald/coord.h @ 8:f83ef905a63d
fixing many warnings
increase capacity for coordinates in bruyn
fix some uninit. variables
author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
---|---|
date | Tue, 22 Apr 2008 13:36:05 +0200 |
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 |