summaryrefslogtreecommitdiff
path: root/coord.h
diff options
context:
space:
mode:
Diffstat (limited to 'coord.h')
-rw-r--r--coord.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/coord.h b/coord.h
new file mode 100644
index 00000000..885c7919
--- /dev/null
+++ b/coord.h
@@ -0,0 +1,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