| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
This is a modular generic stack data-structure. The stack is self growing.
You need to only import the stack.h
void initStack();
Initializes the stack with a capacity of 10 elements.
void push(void * object);
pushs the argument onto the stack
void * pop();
pop: pops the top element of the stack from the stack.
assumes: stack not empty.
int size();
gets the number of elements of the stack.
int isEmpty();
returns 1 if stack is empty otherwise 0.
| Back | FazBrowse Home | New Git URL |