timer/timespec.h
2024-06-23 23:20:44 -05:00

13 lines
298 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_average(const struct timespec * ts,
int length);