globus_hashtable.h (3) Linux Manual Page
globus_hashtable.h – Hash Table. Synopsis #include ‘globus_types.h’ #include ‘globus_list.h’ Typedefs typedef int(* globus_hashtable_hash_func_t )(void *key, int limit) typedef int(* globus_hashtable_keyeq_func_t )(void *key1, void *key2) typedef void(* globus_hashtable_copy_func_t )(void **dest_key, void **dest_datum, void *src_key, void *src_datum) typedef void(* globus_hashtable_destructor_func_t )(void *datum) Functions int globus_hashtable_init (globus_hashtable_t *table, int size, globus_hashtable_hash_func_t hash_func, globus_hashtable_keyeq_func_t keyeq_func) Initialize a hash table….
