├── .clang-format ├── .gitignore ├── LICENSE ├── README.md ├── oa_hash.h └── test ├── .gitignore ├── Makefile ├── greatest.h └── test.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcsmuller/oa-hash/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcsmuller/oa-hash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcsmuller/oa-hash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcsmuller/oa-hash/HEAD/README.md -------------------------------------------------------------------------------- /oa_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcsmuller/oa-hash/HEAD/oa_hash.h -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcsmuller/oa-hash/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcsmuller/oa-hash/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/greatest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcsmuller/oa-hash/HEAD/test/greatest.h -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcsmuller/oa-hash/HEAD/test/test.c --------------------------------------------------------------------------------