aboutsummaryrefslogtreecommitdiff
path: root/src/utils/time.h
blob: 3e7cf419c72bc0eb19241cbecdb2d479089cd279 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include <time.h>

typedef struct timespec Time;
Time time_diff(Time end, Time start);
Time time_add(Time left, Time right);
void time_print(Time time);
Time get_time();