feat(string): add SStrHashHT

This commit is contained in:
fallenoak 2020-11-14 17:18:49 -06:00
parent f631bdac3b
commit abb9e8ed79
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
6 changed files with 277 additions and 0 deletions

8
storm/string/bjhash.hpp Normal file
View file

@ -0,0 +1,8 @@
#ifndef STORM_STRING_BJ_HASH_HPP
#define STORM_STRING_BJ_HASH_HPP
#include <cstdint>
uint32_t bjhash(uint8_t* k, uint32_t length, uint32_t initval);
#endif