#include <stdlib.h>
Include dependency graph for dictionary.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | dict_pair |
A dictionary entry, coupling a key to its value. More... | |
struct | dictionary |
The dictionary itself. More... | |
Functions | |
void * | dict_lookup (const dictionary *dict, const char *key) |
Look up an entry in a dictionary and return the associated value. |
This data structure can associate a string with a void*. You will have to cast elements back to the right type after retrieving them.
Definition in file dictionary.h.
|
Look up an entry in a dictionary and return the associated value.
Definition at line 33 of file dictionary.c. |