优化了命名
This commit is contained in:
16
C11-数据结构/ds/line/stack/list/stack.h
Normal file
16
C11-数据结构/ds/line/stack/list/stack.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user