28#ifndef __AMIWS_linked_str_stack_H
29#define __AMIWS_linked_str_stack_H
41 LinkedStrStackNode *top;
45LinkedStrStack *linked_str_stack_create();
47void linked_str_stack_destroy(LinkedStrStack *stack);
49void linked_str_stack_push(LinkedStrStack *stack,
char *str,
size_t len);
51size_t linked_str_stack_peek(LinkedStrStack *stack,
char **str);
53void linked_str_stack_pull(LinkedStrStack *stack);
Definition linked_str_stack.h:33
Definition linked_str_stack.h:40