2018-12-21 09:36:57 +00:00
|
|
|
#ifndef TEST_H
|
2018-08-22 08:36:26 +00:00
|
|
|
#define TEST_H
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
2018-12-21 09:36:57 +00:00
|
|
|
|
2018-08-23 16:57:38 +00:00
|
|
|
#include <type.h>
|
2018-12-21 09:36:57 +00:00
|
|
|
#include <id/id.h>
|
2018-08-23 16:57:38 +00:00
|
|
|
#include <list/list.h>
|
|
|
|
#include <list/list_expand.h>
|
|
|
|
#include <list/list_expand_1.h>
|
2018-12-21 09:36:57 +00:00
|
|
|
#include <list/list_quick.h>
|
2018-08-23 16:57:38 +00:00
|
|
|
#include <stack/stack.h>
|
2018-12-21 09:36:57 +00:00
|
|
|
#include <stack/stack_expand.h>
|
2018-08-21 08:26:31 +00:00
|
|
|
//#include "tree/tree_expand.h"
|
2018-12-21 09:36:57 +00:00
|
|
|
#include "communicate/communicate.h"
|
|
|
|
|
|
|
|
int stack(void);
|
|
|
|
int list(void);
|
2018-08-22 08:36:26 +00:00
|
|
|
int tree(void);
|
2018-12-21 09:36:57 +00:00
|
|
|
int time_avg(void);
|
|
|
|
|
2018-07-23 04:59:16 +00:00
|
|
|
#endif // TEST_H
|