#include <cdict.h>
|
| char * | key |
| | key for finding matches. Key is a null-terminated string
|
| |
| void * | value |
| | Value to store. value is a pointer to void so it can be any type.
|
| |
| struct _NODE * | next |
| | A pointer points to the next node in case of collision.
|
| |
Structure of each node in the dictionary.
Definition at line 28 of file cdict.h.
◆ key
key for finding matches. Key is a null-terminated string
Definition at line 29 of file cdict.h.
◆ next
| struct _NODE* _NODE::next |
A pointer points to the next node in case of collision.
Definition at line 31 of file cdict.h.
◆ value
Value to store. value is a pointer to void so it can be any type.
Definition at line 30 of file cdict.h.
The documentation for this struct was generated from the following file: