Data Fields | |
| int | conteneurs |
| Number of linked list hold by the hash table. | |
| int(* | h )(const void *cle) |
| Pointer to the function used to hash the input key. | |
| int(* | corresp )(const void *cle1, const void *cle2) |
| Pointer to the function used to compare the data pointed by two elements of the hash table. | |
| void(* | detruire )(void *donnee) |
| Pointer to the function used to free the memory allocated for the data pointed by one element of the hash table. | |
| int | taille |
| Number of element in the hash table. | |
| List * | table |
| Pointer to a linked list. | |
| CHTbl_handle | pointer |
| This parameter represents the position of one element within the linked list. It is used bu the function chtbl_next(). | |
Definition at line 54 of file chtbl.h.
1.3-rc1