aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/mingw/secapi/_localtime64_s.c
blob: bff0868ba1a4e22d2ade2386629a7560b9f7fd84 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <windows.h>
#include <malloc.h>
#include <time.h>
#include <errno.h>
#include <msvcrt.h>

static errno_t __cdecl _int_localtime64_s (struct tm *, const __time64_t *);
static errno_t __cdecl _stub (struct tm *, const __time64_t *);

errno_t __cdecl (*__MINGW_IMP_SYMBOL(_localtime64_s))(struct tm *, const __time64_t *) = 
 _stub;

static errno_t __cdecl
_stub (struct tm *ptm, const __time64_t *pt)
{
  errno_t __cdecl (*f)(struct tm *, const __time64_t *) = __MINGW_IMP_SYMBOL(_localtime64_s);

  if (f == _stub)
    {
	f = (errno_t __cdecl (*)(struct tm *, const __time64_t *))
	    GetProcAddress (__mingw_get_msvcrt_handle (), "_localtime64_s");
	if (!f)
	  f = _int_localtime64_s;
	__MINGW_IMP_SYMBOL(_localtime64_s) = f;
    }
  return (*f)(ptm, pt);
}

errno_t __cdecl
_localtime64_s (struct tm *ptm, const __time64_t *pt)
{
  return _stub (ptm, pt);
}

static errno_t __cdecl
_int_localtime64_s (struct tm *ptm, const __time64_t *pt)
{
  struct tm *ltm;

  if (ptm)
    memset (ptm, 0xff, sizeof (*ptm));
  if (!ptm || !pt)
     {
        errno = EINVAL;
	return EINVAL;
     }
  if ((ltm = _localtime64 (pt)) == NULL)
    return errno;
  *ptm = *ltm;
  return 0;
}