json-c 0.18
|
#include <linkhash.h>
Data Fields | |
const void * | k |
int | k_is_constant |
const void * | v |
struct lh_entry * | next |
struct lh_entry * | prev |
An entry in the hash table. Outside of linkhash.c, treat this as opaque.
const void* lh_entry::k |
The key.
int lh_entry::k_is_constant |
A flag for users of linkhash to know whether or not they need to free k.
struct lh_entry* lh_entry::next |
The next entry.
struct lh_entry* lh_entry::prev |
The previous entry.
const void* lh_entry::v |
The value.