diff options
Diffstat (limited to 'src/geo.h')
-rw-r--r-- | src/geo.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/geo.h b/src/geo.h new file mode 100644 index 0000000..79d0a6a --- /dev/null +++ b/src/geo.h @@ -0,0 +1,22 @@ +#ifndef __GEO_H__ +#define __GEO_H__ + +#include "server.h" + +/* Structures used inside geo.c in order to represent points and array of + * points on the earth. */ +typedef struct geoPoint { + double longitude; + double latitude; + double dist; + double score; + char *member; +} geoPoint; + +typedef struct geoArray { + struct geoPoint *array; + size_t buckets; + size_t used; +} geoArray; + +#endif |