#ifndef INC_LIB_TIME_H#define INC_LIB_TIME_H#include <time.h>// Difference in Time// Compute the difference between timespec structsdoublediff_time(struct timespec *time1,struct timespec *time0);// Get Current Timevoidget_time(struct timespec *ts);#endif