upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/main/geohash.h
diff options
context:
space:
mode:
Diffstat (limited to 'main/geohash.h')
-rw-r--r--main/geohash.h8
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
6void geohash_encode(double lat, double lon, int precision, char *out);
7
8#endif