16 lines
219 B
C
16 lines
219 B
C
|
#ifndef TEST_H
|
||
|
#define TEST_H
|
||
|
|
||
|
#include<stdio.h>
|
||
|
|
||
|
#include "list/list_expand.h"
|
||
|
#include "stack/stack_expand.h"
|
||
|
#include "tree/tree.h"
|
||
|
|
||
|
int stack(void);
|
||
|
int list(void);
|
||
|
int tree(void);
|
||
|
|
||
|
#endif // TEST_H
|
||
|
|