|
libstd v0.1.0
|
Structure representing a generic linked-list-based Stack. More...
#include <stack.h>

Public Attributes | |
| StackNode * | top |
| size_t | element_size |
| size_t | size |
Structure representing a generic linked-list-based Stack.
| size_t Stack::element_size |
Memory size (in bytes) of each stored element.
| size_t Stack::size |
Total number of elements currently on the stack.
| StackNode* Stack::top |
Pointer to the top node (push/pop insertion point).