├── .gitignore ├── .travis.yml ├── COPYING ├── Makefile.am ├── README.md ├── TODO ├── configure.ac ├── hat-trie-0.1.pc.in ├── m4 └── .gitignore ├── src ├── Makefile.am ├── ahtable.c ├── ahtable.h ├── common.h ├── hat-trie.c ├── hat-trie.h ├── misc.c ├── misc.h ├── murmurhash3.c ├── murmurhash3.h ├── portable_endian.h └── pstdint.h └── test ├── Makefile.am ├── bench_sorted_iter.c ├── check_ahtable.c ├── check_hattrie.c ├── str_map.c └── str_map.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/TODO -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/configure.ac -------------------------------------------------------------------------------- /hat-trie-0.1.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/hat-trie-0.1.pc.in -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/ahtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/ahtable.c -------------------------------------------------------------------------------- /src/ahtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/ahtable.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/common.h -------------------------------------------------------------------------------- /src/hat-trie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/hat-trie.c -------------------------------------------------------------------------------- /src/hat-trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/hat-trie.h -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/murmurhash3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/murmurhash3.c -------------------------------------------------------------------------------- /src/murmurhash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/murmurhash3.h -------------------------------------------------------------------------------- /src/portable_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/portable_endian.h -------------------------------------------------------------------------------- /src/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/src/pstdint.h -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/bench_sorted_iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/test/bench_sorted_iter.c -------------------------------------------------------------------------------- /test/check_ahtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/test/check_ahtable.c -------------------------------------------------------------------------------- /test/check_hattrie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/test/check_hattrie.c -------------------------------------------------------------------------------- /test/str_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/test/str_map.c -------------------------------------------------------------------------------- /test/str_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcjones/hat-trie/HEAD/test/str_map.h --------------------------------------------------------------------------------