You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
14 lines
467 B
C
14 lines
467 B
C
#ifndef HASHTABLE_H_
|
|
#define HASHTABLE_H_
|
|
|
|
typedef unsigned int (*HashFunc)(const void *item);
|
|
typedef int (*HashValueCmpFunc)(const void *a, const void *b);
|
|
struct HashTable;
|
|
|
|
struct HashTable *hashtable_new(HashFunc func, HashValueCmpFunc cmp, int size, int valueSize);
|
|
void hashtable_free(struct HashTable *ht);
|
|
void hashtable_insert(struct HashTable *ht, const void *value);
|
|
void *hashtable_query(struct HashTable *ht, const void *value);
|
|
|
|
#endif // HASHTABLE_H_
|