Mercurial > hg > GearsTemplate
view src/parallel_execution/stack.h @ 116:f57e9ffa7960
add comment rb_tree
author | ikkun |
---|---|
date | Wed, 14 Sep 2016 20:35:21 +0900 |
parents | 9e139a340bd1 |
children | 2bb5e4f0fd35 |
line wrap: on
line source
#include <stdlib.h> typedef struct { size_t size; int max; int num; void* data; } stack, *stack_ptr; extern stack_ptr stack_init(); extern stack_ptr stack_realloc(); extern void stack_free(); extern int stack_push(); extern int stack_pop(); extern int isMax(); extern int isEmpty();