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

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

int tain_from_timespec (tain *t, struct timespec const *ts)
{
  if (!tai_from_time(&t->sec, ts->tv_sec)) return 0 ;
  t->nano = ts->tv_nsec ;
  return 1 ;
}