hashtable_entry Struct Reference

Structure representing an entry in a hash table. More...

#include <hashtable.h>

Data Fields

char * key
 The key for the entry.
struct hashtable_entrynext
 A pointer to the next entry in the same bucket.
void * value
 The value for the entry.

Detailed Description

Structure representing an entry in a hash table.

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.


Field Documentation

The key for the entry.

Definition at line 5 of file hashtable.h.

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.

The value for the entry.

Definition at line 6 of file hashtable.h.


The documentation for this struct was generated from the following files:
 All Data Structures Files Functions Variables Defines
Generated on Sun Jul 11 13:37:58 2010 for hashtable by  doxygen 1.6.3