diff options
author | Max <mparisi@stevens.edu> | 2020-09-16 13:27:01 -0400 |
---|---|---|
committer | Max <mparisi@stevens.edu> | 2020-09-16 13:27:01 -0400 |
commit | 7186cb8a4161764b8b51a4917cb9040a53f42142 (patch) | |
tree | 9e651e8d9791f5000a48f002568facf73bcf8cd8 /include/hashtable.h | |
parent | 319dd22af1f7b3d8ba47cdd67dd18a3bd8e01ed2 (diff) |
ArrayNew, Free, Length, Nth and Append. Labeling and updates to heaaders
Diffstat (limited to 'include/hashtable.h')
-rw-r--r-- | include/hashtable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hashtable.h b/include/hashtable.h index 0502273..b4c0ad5 100644 --- a/include/hashtable.h +++ b/include/hashtable.h @@ -18,8 +18,8 @@ typedef struct HashTable { s32 unk10; // comparison callback?
} HashTable;
-HashTable *TableNew(s32 p1, s32 p2, HashFunction hf, s32 p4, s32 p5);
-HashTable *TableNew2(s32 p1, s32 size, s32 p3, HashFunction hf, s32 p5, s32 p6);
+HashTable *TableNew(u32 p1, s32 p2, HashFunction hf, s32 p4, s32 p5);
+HashTable *TableNew2(u32 p1, s32 size, s32 p3, HashFunction hf, s32 p5, s32 p6);
void TableFree(HashTable *table);
s32 TableCount(HashTable *table);
void TableEnter(HashTable *table, void *elem);
|