-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcedtoxtime.c
107 lines (95 loc) · 2.8 KB
/
cedtoxtime.c
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/***
* cedtoxtime.c - convert OS local time to time_t
*
* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* defines __loctotime_t() - convert OS local time to internal format
* (time_t).
*
*******************************************************************************/
#include <celib.h>
#include <time.h>
/***
*time_t __loctotime_t(yr, mo, dy, hr, mn, sc, dstflag) - converts OS local
* time to internal time format (i.e., a time_t value)
*
*Purpose:
* Converts a local time value, obtained in a broken down format from
* the host OS, to time_t format (i.e., the number elapsed seconds since
* 01-01-70, 00:00:00, UTC).
*
*Entry:
* int yr, mo, dy - date
* int hr, mn, sc - time
* int dstflag - 1 if Daylight Time, 0 if Standard Time, -1 if
* not specified.
*
*Exit:
* Returns calendar time value.
*
*Exceptions:
*
*******************************************************************************/
time_t
__loctotime_t (
int yr, /* 0 based */
int mo, /* 1 based */
int dy, /* 1 based */
int hr,
int mn,
int sc,
int dstflag )
{
int tmpdays;
long tmptim;
struct tm tb;
/*
* Do a quick range check on the year and convert it to a delta
* off of 1900.
*/
if ( ((long)(yr -= 1900) < _BASE_YEAR) || ((long)yr > _MAX_YEAR) )
return (time_t)(-1);
/*
* Compute the number of elapsed days in the current year. Note the
* test for a leap year would fail in the year 2100, if this was in
* range (which it isn't).
*/
tmpdays = dy + _days[mo - 1];
if ( !(yr & 3) && (mo > 2) )
tmpdays++;
/*
* Compute the number of elapsed seconds since the Epoch. Note the
* computation of elapsed leap years would break down after 2100
* if such values were in range (fortunately, they aren't).
*/
tmptim = /* 365 days for each year */
(((long)yr - _BASE_YEAR) * 365L
/* one day for each elapsed leap year */
+ (long)((yr - 1) >> 2) - _LEAP_YEAR_ADJUST
/* number of elapsed days in yr */
+ tmpdays)
/* convert to hours and add in hr */
* 24L + hr;
tmptim = /* convert to minutes and add in mn */
(tmptim * 60L + mn)
/* convert to seconds and add in sec */
* 60L + sc;
/*
* Account for time zone.
*/
__tzset();
tmptim += _timezone;
/*
* Fill in enough fields of tb for _isindst(), then call it to
* determine DST.
*/
tb.tm_yday = tmpdays;
tb.tm_year = yr;
tb.tm_mon = mo - 1;
tb.tm_hour = hr;
if ( (dstflag == 1) || ((dstflag == -1) && _daylight &&
_isindst(&tb)) )
tmptim += _dstbias;
return(tmptim);
}