diff options
Diffstat (limited to 'main/geohash.h')
| -rw-r--r-- | main/geohash.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/main/geohash.h b/main/geohash.h new file mode 100644 index 0000000..f8eb69d --- /dev/null +++ b/main/geohash.h | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | #ifndef GEOHASH_H | ||
| 2 | #define GEOHASH_H | ||
| 3 | |||
| 4 | #include <stddef.h> | ||
| 5 | |||
| 6 | void geohash_encode(double lat, double lon, int precision, char *out); | ||
| 7 | |||
| 8 | #endif | ||