1 #ifndef __LIBCPROJECT_STACK__
2 #define __LIBCPROJECT_STACK__
void stack_free(struct stack *stack)
Frees the stack.
struct stack_node * first
void * stack_pop(struct stack *stack)
Pop data from stack.
void stack_push(struct stack *stack, void *data)
Push data to stack.
struct stack * stack_initialization()
Stack initialization.
Stack structure => LIFO (Last In First Out).