diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-06-23 19:40:47 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-06-23 19:40:47 +0000 |
commit | 0817df2fb67e3a2be95b311c4c2d42d2a1e1bc41 (patch) | |
tree | 25123b396b822a7c2219eb3456eef3dfd9a6462a /src/htshash.h | |
parent | f42a5fa5dd4b5b8b91b66e7b47602be12aa298b2 (diff) |
Trashed historical link heap hashtable, and replaced it by cleaner code using new cuckoo hashtables
I can not believe I kept such a terible and frightening code for such a long time, geez.
Diffstat (limited to 'src/htshash.h')
-rw-r--r-- | src/htshash.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/htshash.h b/src/htshash.h index 36e0ae8..2b0d9bd 100644 --- a/src/htshash.h +++ b/src/htshash.h @@ -45,6 +45,7 @@ typedef struct hash_struct hash_struct; #endif // tables de hachage +void hash_init(hash_struct * hash); int hash_read(const hash_struct * hash, const char *nom1, const char *nom2, int type, int normalized); void hash_write(hash_struct * hash, int lpos, int normalized); |