stack_create, stack_destroy, stack_pop, stack_is_empty,
- Provided by: publib-dev (Version: 0.40-3build1)
- Source: publib
- Report a bug
#include <stack.h> Stack *stack_create(void); void stack_destroy(Stack *); void *stack_pop(Stack *); int stack_is_empty(Stack *); Stack *stack_copy(Stack *); int stack_push(Stack *, void *data, size_t bytes);
These functions operate on stacks. This manual page is shortish.
Lars Wirzenius (lars.wirzenius@helsinki.fi)