summaryrefslogtreecommitdiff
path: root/src/htshash.h
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2013-08-12 13:42:55 +0000
committerXavier Roche <xroche@users.noreply.github.com>2013-08-12 13:42:55 +0000
commit4e903579b22f3698934294370f076119576041ab (patch)
treeb2007c09c0994a8a3c2d1aba4c8c04ae540daf9a /src/htshash.h
parente77141ceaefb55f427edcfb777f5f1a96b885583 (diff)
Big cleanup in core heap hashtable code, rewritten using new fancy hashtables.
Diffstat (limited to 'src/htshash.h')
-rw-r--r--src/htshash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/htshash.h b/src/htshash.h
index 97b35ab..454556f 100644
--- a/src/htshash.h
+++ b/src/htshash.h
@@ -52,11 +52,11 @@ typedef enum hash_struct_type {
} hash_struct_type;
// tables de hachage
-void hash_init(hash_struct *hash);
+void hash_init(hash_struct *hash, int normalized);
void hash_free(hash_struct *hash);
int hash_read(const hash_struct * hash, const char *nom1, const char *nom2,
- hash_struct_type type, int normalized);
-void hash_write(hash_struct * hash, int lpos, int normalized);
+ hash_struct_type type);
+void hash_write(hash_struct * hash, int lpos);
int *hash_calc_chaine(hash_struct * hash, hash_struct_type type, int pos);
unsigned long int hash_cle(const char *nom1, const char *nom2);
#endif