]>
git.datanom.net - clib.git/blob - stack.h
6 typedef struct _Stack Stack
;
9 void* stack_pop(Stack
*);
10 void stack_push(Stack
*, void*);
11 void* stack_peek(Stack
*);
12 bool stack_empty(Stack
*);
13 void** stack_clear(Stack
** stack
);
This page took 0.095876 seconds and 6 git commands to generate.