]>
git.datanom.net - clib.git/blob - stack.h
2ff3a7d4a8aba2c9de2a8094d33dd30d2b8b10bf
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.102105 seconds and 4 git commands to generate.