LIRC libraries
LinuxInfraredRemoteControl
|
Dictionary object. More...
#include <dictionary.h>
Data Fields | |
int | n |
int | size |
char ** | val |
char ** | key |
unsigned * | hash |
Dictionary object.
n | Number of entries in the dictionary |
size | Storage size |
val | List of string values |
key | List of string keys |
hash | List of hash values for keys |
This object contains a list of string/string associations. Each association is identified by a unique string key. Looking up values in the dictionary is speeded up by the use of a (hopefully collision-free) hash function.
Definition at line 67 of file dictionary.h.