Files
Linux-C-Notes/C11-数据结构/ds/line/stack/list/stack.h
2024-04-28 13:10:56 +08:00

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