howm
howm
|
Represents a stack. This stack is going to hold linked lists of clients. An example of the stack is below: More...
#include <scratchpad.h>
Data Fields | |
unsigned int | size |
client_t ** | contents |
Represents a stack. This stack is going to hold linked lists of clients. An example of the stack is below:
BOTTOM
client_t** stack::contents |
The contents is an array of linked lists. Storage is malloced later as we don't know the size yet.
unsigned int stack::size |
The amount of items in the stack.