2023-01-06 03:39:19 +08:00
|
|
|
/**
|
2023-01-05 08:39:09 +08:00
|
|
|
* File: include.h
|
|
|
|
* Created Time: 2022-12-20
|
2023-01-11 00:48:48 +08:00
|
|
|
* Author: MolDuM (moldum@163.com)、Reanon (793584285@qq.com)
|
2023-01-05 08:39:09 +08:00
|
|
|
*/
|
|
|
|
|
2023-01-11 00:48:48 +08:00
|
|
|
#ifndef C_INCLUDE_H
|
|
|
|
#define C_INCLUDE_H
|
|
|
|
|
2022-12-26 12:43:37 +08:00
|
|
|
#include <stdio.h>
|
2023-01-04 08:09:22 +08:00
|
|
|
#include <stdlib.h>
|
2023-01-05 08:39:09 +08:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2023-01-11 00:48:48 +08:00
|
|
|
#include "list_node.h"
|
|
|
|
#include "tree_node.h"
|
|
|
|
#include "print_util.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // C_INCLUDE_H
|