aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/mingw/secapi/_strtime_s.c
blob: b66e3f95a8d8d7fb30a5e11fb6f3e309029f32b2 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <windows.h>
#include <malloc.h>
#include <time.h>
#include <errno.h>
#include <msvcrt.h>

static errno_t __cdecl _int_strtime_s (char *, size_t);
static errno_t __cdecl _stub (char *, size_t);

errno_t __cdecl (*__MINGW_IMP_SYMBOL(_strtime_s))(char *, size_t) = 
 _stub;

static errno_t __cdecl
_stub (char *d, size_t dn)
{
  errno_t __cdecl (*f)(char *, size_t) = __MINGW_IMP_SYMBOL(_strtime_s);

  if (f == _stub)
    {
	f = (errno_t __cdecl (*)(char *, size_t))
	    GetProcAddress (__mingw_get_msvcrt_handle (), "_strtime_s");
	if (!f)
	  f = _int_strtime_s;
	__MINGW_IMP_SYMBOL(_strtime_s) = f;
    }
  return (*f)(d, dn);
}

errno_t __cdecl
_strtime_s (char *d, size_t dn)
{
  return _stub (d, dn);
}

static errno_t __cdecl
_int_strtime_s (char *d, size_t dn)
{
  SYSTEMTIME dt;
  int hours, minutes, seconds;

  if (!d || !dn)
    {
      errno = EINVAL;
      return EINVAL;
    }

  d[0] = 0;

  if (dn < 9)
    {
      errno = ERANGE;
      return ERANGE;
    }

  GetLocalTime (&dt);
  dt.wYear %= 100;

  hours = dt.wHour;
  minutes = dt.wMinute;
  seconds = dt.wSecond;

  d[2] = d[5] = ':';
  d[0] = (char) (hours / 10 + '0');
  d[1] = (char) (hours % 10 + '0');
  d[3] = (char) (minutes / 10 + '0');
  d[4] = (char) (minutes % 10 + '0');
  d[6] = (char) (seconds / 10 + '0');
  d[7] = (char) (seconds % 10 + '0');
  d[8] = 0;

  return 0;
}