diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2020-09-29 22:55:53 -0400 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2020-09-29 22:55:53 -0400 |
commit | 7c4be3103501672f96191329ae15d899eb1aae4a (patch) | |
tree | a80854618b148babb330a61ad280bfe8c0470745 /include/GameSpy/hashtable.h | |
parent | 327f50ac00dd60c264dae63e96ced917d593c651 (diff) | |
parent | 89d7e06a792a5859b3d284257612820feb2980a2 (diff) |
Merge branch 'master' of https://github.com/doldecomp/pokerevo into label_ctors
Diffstat (limited to 'include/GameSpy/hashtable.h')
-rw-r--r-- | include/GameSpy/hashtable.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/GameSpy/hashtable.h b/include/GameSpy/hashtable.h new file mode 100644 index 0000000..26e0b6d --- /dev/null +++ b/include/GameSpy/hashtable.h @@ -0,0 +1,34 @@ +#ifndef POKEREVO_HASHTABLE_H
+#define POKEREVO_HASHTABLE_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include "GameSpy/darray.h"
+
+typedef s32 (*HashFunction)(void *, s32);
+
+typedef struct HashTable {
+ DArray **chains;
+ s32 size;
+ DtorFunction dtor;
+ HashFunction hashFunc;
+ CompareFunction compar;
+} HashTable;
+
+HashTable *TableNew(u32 p1, s32 p2, HashFunction hf, CompareFunction cmp, DtorFunction dtor);
+HashTable *TableNew2(u32 p1, s32 size, s32 p3, HashFunction hf, CompareFunction cmp, DtorFunction dtor);
+void TableFree(HashTable *table);
+s32 TableCount(HashTable *table);
+void TableEnter(HashTable *table, void *elem);
+BOOL TableRemove(HashTable *table, void *elem);
+void *TableLookup(HashTable *table, void *elem);
+void TableMapSafe(HashTable *table, MapFunction p2, s32 p3);
+void *TableMapSafe2(HashTable *table, MapFunction p2, s32 p3);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_HASHTABLE_H
|