1 contributor
16 lines615 bytes
1#ifndef _TIMESPEC_UTILS_H
2#define _TIMESPEC_UTILS_H
3
4struct timespec;
5
6static inline bool timespec_eq(struct timespec a, struct timespec b);
7static inline bool timespec_ne(struct timespec a, struct timespec b);
8static inline bool timespec_lt(struct timespec a, struct timespec b);
9static inline bool timespec_lte(struct timespec a, struct timespec b);
10static inline bool timespec_gt(struct timespec a, struct timespec b);
11static inline bool timespec_gte(struct timespec a, struct timespec b);
12static inline struct timespec timespec_sub(struct timespec a, struct timespec b);
13
14#include "timespec_utils.def.h"
15#endif
16