summaryrefslogtreecommitdiff
path: root/src/libstddjb/timeval_from_tain_relative.c
blob: f340f3f0f4bc5371ed7da2e7d3d38f7dd37d7f1f (plain)
1
2
3
4
5
6
7
8
9
10
11
/* ISC license. */

#include <sys/time.h>
#include <skalibs/tai.h>

int timeval_from_tain_relative (struct timeval *tv, tain const *t)
{
  if (!time_from_tai_relative(&tv->tv_sec, &t->sec)) return 0 ;
  tv->tv_usec = (t->nano + 500) / 1000 ;
  return 1 ;
}