A library is a collection of collections for the C language.
Currently the library contains:
- Linked List
- Queue
- Stack
- HashMap
- Binary Search Tree
The main type is specified in the node.h file.
By default, the informative part of the node is described by the following structure:
typedef union NodeInfo {
int intValue;
char *stringValue;
double realValue;
void *pointerValue;
} NodeInfo;