Structure to hold all data for one tree.
More...
#include <Tree.h>
|
|
struct { | |
|
Node * root | |
| | root node pointer
|
|
int(* compare )(void *, void *, int) | |
| | comparison function
|
| } | index [2] |
|
int | indexes |
| | no of indexes into tree
|
|
int | count |
| | no of items
|
|
size_t | size |
| | heap storage used
|
|
unsigned int | heap_tracking: 1 |
| | switch on heap tracking for this tree?
|
|
unsigned int | allow_duplicates: 1 |
| | switch to allow duplicate entries
|
Structure to hold all data for one tree.
The documentation for this struct was generated from the following file: