43struct timespec timespec_add(struct timespec ts1, struct timespec ts2);
44struct timespec timespec_sub(struct timespec ts1, struct timespec ts2);
45struct timespec timespec_mod(struct timespec ts1, struct timespec ts2);
47struct timespec timespec_min(struct timespec ts1, struct timespec ts2);
48struct timespec timespec_max(struct timespec ts1, struct timespec ts2);
49struct timespec timespec_clamp(struct timespec ts1, struct timespec min, struct timespec max);
51int timespec_cmp(
struct timespec ts1,
struct timespec ts2);
52bool timespec_eq(
struct timespec ts1,
struct timespec ts2);
53bool timespec_gt(
struct timespec ts1,
struct timespec ts2);
54bool timespec_ge(
struct timespec ts1,
struct timespec ts2);
55bool timespec_lt(
struct timespec ts1,
struct timespec ts2);
56bool timespec_le(
struct timespec ts1,
struct timespec ts2);
58struct timespec timespec_from_double(double s);
59double timespec_to_double(
struct timespec ts);
60struct timespec timespec_from_timeval(struct timeval tv);
61struct timeval timespec_to_timeval(struct timespec ts);
62struct timespec timespec_from_ms(long milliseconds);
63long timespec_to_ms(
struct timespec ts);
65struct timespec timespec_normalise(struct timespec ts);