mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
19 lines
1,010 B
R
19 lines
1,010 B
R
#include "hash.h"
|
|
|
|
hashtab_t Hash_NewTable (integer size, string gk (void *ele, void *data), void f (void *ele, void *data), void *ud) = #0;
|
|
void Hash_SetHashCompare (hashtab_t tab, unsigned gh (void *ele, void *data), integer cmp (void *ele1, void *ele2, void *data)) = #0;
|
|
void Hash_DelTable (hashtab_t tab) = #0;
|
|
void Hash_FlushTable (hashtab_t tab) = #0;
|
|
integer Hash_Add (hashtab_t tab, void *ele) = #0;
|
|
integer Hash_AddElement (hashtab_t tab, void *ele) = #0;
|
|
void *Hash_Find (hashtab_t tab, string key) = #0;
|
|
void *Hash_FindElement (hashtab_t tab, void *ele) = #0;
|
|
void **Hash_FindList (hashtab_t tab, string key) = #0;
|
|
void **Hash_FindElementList (hashtab_t tab, void *ele) = #0;
|
|
void *Hash_Del (hashtab_t tab, string key) = #0;
|
|
void *Hash_DelElement (hashtab_t tab, void *ele) = #0;
|
|
void Hash_Free (hashtab_t tab, void *ele) = #0;
|
|
integer Hash_String (string str) = #0;
|
|
integer Hash_Buffer (void *buf, integer len) = #0;
|
|
void **Hash_GetList (hashtab_t tab) = #0;
|
|
void Hash_Stats (hashtab_t tab) = #0;
|