summaryrefslogtreecommitdiff
path: root/src/libstddjb/timespec_from_tai_relative.c
blob: 42f2e95ecfef912cb23af03394c53a62d6e64461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ISC license. */

#include <sys/types.h>
#include <time.h>
#include <errno.h>
#include <skalibs/sysdeps.h>
#include <skalibs/uint64.h>
#include <skalibs/tai.h>

int timespec_from_tai_relative (struct timespec *ts, tai_t const *t)
{
  if (tai_sec(t) >= (uint64)1 << 63) return (errno = EINVAL, 0) ;
#if SKALIBS_SIZEOFTIME < 8
  if (tai_sec(t) > 0xffffffffU) return (errno = ERANGE, 0) ;
#endif
  ts->tv_sec = (time_t)tai_sec(t) ;
  ts->tv_nsec = 0 ;
  return 1 ;
}