summaryrefslogtreecommitdiff
path: root/src/libstddjb/localtm_from_ltm64.c
blob: 8eba4092c1ee81460fea220a14f39f9fb6785cee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ISC license. */

/* OpenBSD needs that for EOVERFLOW. wtfbsdseriously */
#ifndef _BSD_SOURCE
#define _BSD_SOURCE
#endif

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

int localtm_from_ltm64 (struct tm *l, uint64_t uu, int tzh)
{
  time_t u ;
  if (uu < TAI_MAGIC) return (errno = EINVAL, 0) ;
  uu -= TAI_MAGIC ;
#if SKALIBS_SIZEOFTIME != 8
  if (uu > 0xFFFFFFFFUL) return (errno = EOVERFLOW, 0) ;
#endif
  u = (time_t)uu - !!(tzh & 2) ;
  if (tzh & 1 ? !localtime_r(&u, l) : !gmtime_r(&u, l)) return 0 ;
  if (tzh & 2) l->tm_sec++ ;
  return 1 ;
}