blob: d72cc0055247456f711df5db7adcdc6551149ff1 (
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 *get_timespec(struct timespec *ts);
#endif //LIBTUBERIA_UTILS_H__
|