31{
33
34 TimeType const invalid_time = static_cast<TimeType>(-1);
35
37
38 TimeType tmptm1, tmptm2, tmptm3;
39
40
41 if ((tmptm1 =
tb->tm_year) <
_BASE_YEAR - 1 || tmptm1 > time_traits::max_year + 1)
43
44
45
46 if (
tb->tm_mon < 0 ||
tb->tm_mon > 11)
47 {
48
49 tmptm1 += (
tb->tm_mon / 12);
50
51 if ((
tb->tm_mon %= 12) < 0)
52 {
54 --tmptm1;
55 }
56
57
58 if (tmptm1 < _BASE_YEAR - 1 || tmptm1 > time_traits::max_year + 1)
60 }
61
62
63
64
65
68 ++tmptm2;
69
70
71
72
73
74
76
77
78 tmptm3 += tmptm2;
79
80
81 tmptm1 = tmptm3 + (tmptm2 =
static_cast<TimeType
>(
tb->tm_mday));
83
84
85
86
87 tmptm2 = tmptm1 * 24;
89
90
91 tmptm1 = tmptm2 + (tmptm3 =
static_cast<TimeType
>(
tb->tm_hour));
93
94
95
96
97
98 tmptm2 = tmptm1 * 60;
100
101
102 tmptm1 = tmptm2 + (tmptm3 =
static_cast<TimeType
>(
tb->tm_min));
104
105
106
107
108
109 tmptm2 = tmptm1 * 60L;
111
112
113 tmptm1 = tmptm2 + (tmptm3 =
static_cast<TimeType
>(
tb->tm_sec));
115
116
117
118
120 if (use_local_time)
121 {
122
123
125
126 long dstbias = 0;
130
132
133
134
135 if (time_traits::localtime_s(&tbtemp, &tmptm1) != 0)
137
138
139
140
141
142 if (
tb->tm_isdst > 0 || (
tb->tm_isdst < 0 && tbtemp.
tm_isdst > 0))
143 {
144 tmptm1 += dstbias;
145 if (time_traits::localtime_s(&tbtemp, &tmptm1) != 0)
147 }
148
149 }
150 else
151 {
152 if (time_traits::gmtime_s(&tbtemp, &tmptm1) != 0)
154 }
155
156
157
158
160 return tmptm1;
161}
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
bool __cdecl __crt_time_is_leap_year(TimeType const yr)
TimeType __cdecl __crt_time_elapsed_leap_years(TimeType const yr)
#define _VALIDATE_RETURN_NOEXC(expr, errorcode, retexpr)
#define ChkMul(dest, src1, src2)
#define ChkAdd(dest, src1, src2)
_CRTIMP errno_t __cdecl _get_dstbias(_Out_ long *_Daylight_savings_bias)
_CRTIMP errno_t __cdecl _get_timezone(_Out_ long *_Timezone)