#include <hashtable.h>
The members of this struct are for internal use only; programs can manipulate hash tables through the interface exposed in hashtable.h.
The structure contains the entry's key, its value, and a pointer to the next entry in the same bucket.
Definition at line 4 of file hashtable.h.
Data Fields | |
char * | key |
The key for the entry. | |
hashtable_entry * | next |
A pointer to the next entry in the same bucket. | |
void * | value |
The value for the entry. |
char * hashtable_entry::key |
struct hashtable_entry * hashtable_entry::next |
A pointer to the next entry in the same bucket.
The pointer is NULL
if this is the last entry in the bucket.
Definition at line 7 of file hashtable.h.
char * hashtable_entry::value |