blob: cd63547112aa4aaa8c9d55bb8bc0f8635ad1ed2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* ISC license. */
#include <time.h>
#include <skalibs/tai.h>
int timespec_from_tain (struct timespec *ts, tain_t const *t)
{
if (!time_from_tai(&ts->tv_sec, &t->sec)) return 0 ;
ts->tv_nsec = t->nano ;
return 1 ;
}
|