2018-06-12 11:07:12 +00:00
|
|
|
#ifndef TEST_H
|
|
|
|
#define TEST_H
|
|
|
|
|
|
|
|
#include<stdio.h>
|
|
|
|
|
|
|
|
#include "list/list_expand.h"
|
|
|
|
#include "stack/stack_expand.h"
|
|
|
|
#include "tree/tree.h"
|
2018-06-13 08:04:51 +00:00
|
|
|
#include "tree/tree_expand.h"
|
2018-06-12 11:07:12 +00:00
|
|
|
|
|
|
|
int stack(void);
|
|
|
|
int list(void);
|
|
|
|
int tree(void);
|
|
|
|
|
|
|
|
#endif // TEST_H
|
|
|
|
|