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