blob: 0fde42947459748d237f685fccf01bb96526a082 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef LIBTUBERIA_UTILS_H__
#define LIBTUBERIA_UTILS_H__
#include <sys/time.h>
struct timespec *timespec_add_ms(struct timespec *ts, int timeout_ms);
struct timespec *gettimespec(struct timespec *ts);
#endif //LIBTUBERIA_UTILS_H__
|