├── Makefile ├── README.txt ├── geohash.c ├── geohash.h └── main.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhicheng/geohash/HEAD/Makefile -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- 1 | Geohash C Implementation 2 | 3 | License: 4 | Public Domain 5 | -------------------------------------------------------------------------------- /geohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhicheng/geohash/HEAD/geohash.c -------------------------------------------------------------------------------- /geohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhicheng/geohash/HEAD/geohash.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhicheng/geohash/HEAD/main.c --------------------------------------------------------------------------------