Hashtable: use more distinct typename for key type

This commit is contained in:
Christian Göttsche
2021-01-04 23:20:36 +01:00
committed by cgzones
parent 43d5c61884
commit 8fe04b7494
4 changed files with 12 additions and 12 deletions

View File

@ -10,12 +10,12 @@ in the source distribution for its full text.
#include <stdbool.h>
typedef unsigned int hkey_t;
typedef unsigned int ht_key_t;
typedef void(*Hashtable_PairFunction)(hkey_t key, void* value, void* userdata);
typedef void(*Hashtable_PairFunction)(ht_key_t key, void* value, void* userdata);
typedef struct HashtableItem_ {
hkey_t key;
ht_key_t key;
unsigned int probe;
void* value;
} HashtableItem;
@ -41,11 +41,11 @@ void Hashtable_clear(Hashtable* this);
void Hashtable_setSize(Hashtable* this, unsigned int size);
void Hashtable_put(Hashtable* this, hkey_t key, void* value);
void Hashtable_put(Hashtable* this, ht_key_t key, void* value);
void* Hashtable_remove(Hashtable* this, hkey_t key);
void* Hashtable_remove(Hashtable* this, ht_key_t key);
void* Hashtable_get(Hashtable* this, hkey_t key);
void* Hashtable_get(Hashtable* this, ht_key_t key);
void Hashtable_foreach(Hashtable* this, Hashtable_PairFunction f, void* userData);