timer/timespec.h
Zack Buhman 8c1c1e97f6 duplicate send, resend, ack
The 'software' renderer is now explicitly requested.
2024-06-26 02:44:07 -05:00

16 lines
371 B
C

#pragma once
#include <time.h>
struct timespec timespec_sub(const struct timespec * a,
const struct timespec * b);
struct timespec timespec_add(const struct timespec * a,
const struct timespec * b);
struct timespec timespec_div(const struct timespec * a,
int n);
struct timespec timespec_average(const struct timespec * ts,
int length);