upleb.uk

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

summaryrefslogtreecommitdiff
path: root/main/geohash.h
blob: f8eb69d17bcf4b67df5f3b41ea8681e8973018a2 (plain)
1
2
3
4
5
6
7
8
#ifndef GEOHASH_H
#define GEOHASH_H

#include <stddef.h>

void geohash_encode(double lat, double lon, int precision, char *out);

#endif