view Meerwald/coord.h @ 11:a5249f7d45f7

improve cmp_ppm usage help
author Peter Meerwald <pmeerw@cosy.sbg.ac.at>
date Thu, 01 May 2008 18:19:13 +0200
parents be303a3f5ea8
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

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.