Stack data structure.
More...
Go to the source code of this file.
◆ stack_destroy()
void stack_destroy |
( |
stack_t * |
stack | ) |
|
Deinitializes a stack.
- Parameters
-
stack | The stack to deinitialize. |
◆ stack_init()
Initializes the stack.
- Returns
- Pointer to a new stack.
◆ stack_pop()
Pops an element from the top of the stack, and returns it.
- Parameters
-
stack | Pointer to the stack to populate. |
- Returns
- The topmost element of the stack.
◆ stack_push()
void stack_push |
( |
stack_t * |
stack, |
|
|
void * |
element |
|
) |
| |
Pushes an element to the stack.
- Parameters
-
stack | Pointer to the stack to populate. |
element | The element to add. |
◆ stack_size()
Returns the size of the stack.
- Parameters
-
- Returns
- The size of the stack.