1 /* 2 * Copyright (C) 1994-1995. James Darrell McCauley. (darrell@mccauley-usa.com) 3 * http://mccauley-usa.com/ 4 * 5 * This program is free software under the GPL (>=v2) 6 * Read the file GPL.TXT coming with GRASS for details. 7 */ 8 9 typedef struct 10 { 11 double x, y; 12 } COOR; 13 14 void count_sites(COOR *, int, int *, double, struct Map_info *, int); 15 COOR *find_quadrats(int, double, struct Cell_head); 16 void qindices(int *, int, double *, double *, 17 double *, double *, double *, double *); 18