12345678910111213141516171819 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <string.h>
- #include <math.h>
- #include <grass/gis.h>
- #include <grass/site.h>
- /*---------------------typedefs*/
- struct zstruct
- {
- double x, y, z;
- };
- typedef struct zstruct Z;
- /*--------------------functions */
- int G_readsites(FILE *, int, int, int, struct Cell_head *, Z **);
|