|
libcproject
C static library easier to use than libc (C standard library).
|


Go to the source code of this file.
Data Structures | |
| struct | stack |
| Stack structure => LIFO (Last In First Out). More... | |
| struct | stack_node |
| Stack node structure. More... | |
Functions | |
| struct stack * | stack_initialization () |
| Stack initialization. More... | |
| void | stack_push (struct stack *stack, void *data) |
| Push data to stack. More... | |
| void * | stack_pop (struct stack *stack) |
| Pop data from stack. More... | |
| void | stack_free (struct stack *stack) |
| Frees the stack. More... | |
| struct stack |
| struct stack_node |
| struct stack* stack_initialization | ( | ) |
Stack initialization.
| void stack_push | ( | struct stack * | stack, |
| void * | data | ||
| ) |
Push data to stack.
| stack | |
| data |
| void* stack_pop | ( | struct stack * | stack | ) |
Pop data from stack.
| stack |
| void stack_free | ( | struct stack * | stack | ) |
Frees the stack.
| stack |