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

#include <time.h>
#include <skalibs/uint64.h>
#include <skalibs/djbtime.h>

int tai_from_localtm (tai *t, struct tm const *l)
{
  uint64_t u ;
  if (!ltm64_from_localtm(&u, l)) return 0 ;
  return tai_from_ltm64(t, u) ;
}