summaryrefslogtreecommitdiff
path: root/coord.h
blob: 885c791905aee8cf691a1769b8f1fabaa8f8455f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef COORD_H
#define COORD_H

struct coord {
	long x;
	long y;
};

struct coord_d {
	double x;
	double y;
};

struct coord_geo {
	double lng;
	double lat;
};

struct coord * coord_get(unsigned char **p);

#endif