15 lines
263 B
C
15 lines
263 B
C
#ifndef TEST_H
|
|
#define TEST_H
|
|
|
|
#include "type/type.h"
|
|
#include "list/list_expand.h"
|
|
#include "stack/stack_expand.h"
|
|
#include "tree/tree_expand.h"
|
|
#include "communicate/communicate.h"
|
|
|
|
int stack(void);
|
|
int list(void);
|
|
int tree(void);
|
|
|
|
#endif // TEST_H
|