16 lines
223 B
C
16 lines
223 B
C
#ifndef STACK_H__
|
|
#define STACK_H__
|
|
|
|
#include "llist.h"
|
|
|
|
typedef LLIST STACK;
|
|
|
|
STACK *stack_create(int);
|
|
|
|
int stack_push(STACK *, const void *data);
|
|
|
|
int stack_pop(STACK *, void *data);
|
|
|
|
void stack_destroy(STACK *);
|
|
|
|
#endif |