Python-like Dictionary Library
Dictionary library similar to Python dict functionality
Loading...
Searching...
No Matches
Public Attributes | List of all members
_NODE Struct Reference

#include <cdict.h>

Collaboration diagram for _NODE:
Collaboration graph
[legend]

Public Attributes

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 _NODEnext
 A pointer points to the next node in case of collision.
 

Detailed Description

Structure of each node in the dictionary.

Definition at line 28 of file cdict.h.

Member Data Documentation

◆ key

char* _NODE::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

void* _NODE::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: