view src/parallel_execution/stack.h @ 90:4b5bf5b40970

put queue
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Tue, 26 Jan 2016 06:47:35 +0900
parents 9e139a340bd1
children
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();