BSD 4_4 release
[unix-history] / usr / src / lib / libc / gen / ctime.c
CommitLineData
b8f253e8 1/*
74155b62
KB
2 * Copyright (c) 1987, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
83b522e6 4 *
04540e0d 5 * This code is derived from software contributed to Berkeley by
1b71c7c8 6 * Arthur David Olson of the National Cancer Institute.
04540e0d 7 *
ad787160
C
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
b8f253e8
KM
35 */
36
f60731f0 37#if defined(LIBC_SCCS) && !defined(lint)
ad787160 38static char sccsid[] = "@(#)ctime.c 8.1 (Berkeley) 6/4/93";
83b522e6 39#endif /* LIBC_SCCS and not lint */
b8f253e8 40
4acda82d
KB
41/*
42** Leap second handling from Bradley White (bww@k.gp.cs.cmu.edu).
43** POSIX-style TZ environment variable handling from Guy Harris
44** (guy@auspex.com).
45*/
674afc9d 46
4acda82d 47/*LINTLIBRARY*/
e747b257 48
4acda82d
KB
49#include <sys/param.h>
50#include <fcntl.h>
51#include <time.h>
52#include <tzfile.h>
53#include <string.h>
54#include <ctype.h>
55#include <stdio.h>
c5980113 56#include <unistd.h>
674afc9d 57
4acda82d
KB
58#ifdef __STDC__
59#include <stdlib.h>
bdea7503 60
4acda82d
KB
61#define P(s) s
62#define alloc_size_t size_t
63#define qsort_size_t size_t
64#define fread_size_t size_t
65#define fwrite_size_t size_t
bdea7503 66
4acda82d
KB
67#else /* !defined __STDC__ */
68
a4bfaa8b 69#define P(s) ()
4acda82d
KB
70
71typedef char * genericptr_t;
72typedef unsigned alloc_size_t;
73typedef int qsort_size_t;
74typedef int fread_size_t;
75typedef int fwrite_size_t;
76
77extern char * calloc();
78extern char * malloc();
79extern char * realloc();
80extern char * getenv();
81
82#endif /* !defined __STDC__ */
83
84extern time_t time();
85
4acda82d
KB
86#define ACCESS_MODE O_RDONLY
87#define OPEN_MODE O_RDONLY
88
89#ifndef WILDABBR
90/*
91** Someone might make incorrect use of a time zone abbreviation:
92** 1. They might reference tzname[0] before calling tzset (explicitly
93** or implicitly).
94** 2. They might reference tzname[1] before calling tzset (explicitly
95** or implicitly).
96** 3. They might reference tzname[1] after setting to a time zone
97** in which Daylight Saving Time is never observed.
98** 4. They might reference tzname[0] after setting to a time zone
99** in which Standard Time is never observed.
100** 5. They might reference tm.TM_ZONE after calling offtime.
101** What's best to do in the above cases is open to debate;
102** for now, we just set things up so that in any of the five cases
103** WILDABBR is used. Another possibility: initialize tzname[0] to the
104** string "tzname[0] used before set", and similarly for the other cases.
105** And another: initialize tzname[0] to "ERA", with an explanation in the
106** manual page of what this "time zone abbreviation" means (doing this so
107** that tzname[0] has the "normal" length of three characters).
108*/
109#define WILDABBR " "
110#endif /* !defined WILDABBR */
7f253f66 111
e747b257
KB
112#ifndef TRUE
113#define TRUE 1
114#define FALSE 0
4acda82d 115#endif /* !defined TRUE */
e747b257 116
4acda82d 117static const char GMT[] = "GMT";
e747b257
KB
118
119struct ttinfo { /* time type information */
120 long tt_gmtoff; /* GMT offset in seconds */
121 int tt_isdst; /* used to set tm_isdst */
122 int tt_abbrind; /* abbreviation list index */
4acda82d
KB
123 int tt_ttisstd; /* TRUE if transition is std time */
124};
125
126struct lsinfo { /* leap second information */
127 time_t ls_trans; /* transition time */
128 long ls_corr; /* correction to apply */
4e884c92
RE
129};
130
e747b257 131struct state {
4acda82d 132 int leapcnt;
e747b257
KB
133 int timecnt;
134 int typecnt;
135 int charcnt;
136 time_t ats[TZ_MAX_TIMES];
137 unsigned char types[TZ_MAX_TIMES];
138 struct ttinfo ttis[TZ_MAX_TYPES];
4acda82d
KB
139 char chars[(TZ_MAX_CHARS + 1 > sizeof GMT) ?
140 TZ_MAX_CHARS + 1 : sizeof GMT];
141 struct lsinfo lsis[TZ_MAX_LEAPS];
7f253f66
SL
142};
143
4acda82d
KB
144struct rule {
145 int r_type; /* type of rule--see below */
146 int r_day; /* day number of rule */
147 int r_week; /* week number of rule */
148 int r_mon; /* month number of rule */
149 long r_time; /* transition time of rule */
150};
151
152#define JULIAN_DAY 0 /* Jn - Julian day */
153#define DAY_OF_YEAR 1 /* n - day of year */
154#define MONTH_NTH_DAY_OF_WEEK 2 /* Mm.n.d - month, week, day of week */
e747b257 155
4acda82d
KB
156/*
157** Prototypes for static functions.
158*/
159
160static long detzcode P((const char * codep));
161static const char * getzname P((const char * strp));
162static const char * getnum P((const char * strp, int * nump, int min,
163 int max));
164static const char * getsecs P((const char * strp, long * secsp));
165static const char * getoffset P((const char * strp, long * offsetp));
166static const char * getrule P((const char * strp, struct rule * rulep));
167static void gmtload P((struct state * sp));
168static void gmtsub P((const time_t * timep, long offset,
169 struct tm * tmp));
170static void localsub P((const time_t * timep, long offset,
171 struct tm * tmp));
172static void normalize P((int * tensptr, int * unitsptr, int base));
173static void settzname P((void));
174static time_t time1 P((struct tm * tmp, void (* funcp)(),
175 long offset));
176static time_t time2 P((struct tm *tmp, void (* funcp)(),
177 long offset, int * okayp));
178static void timesub P((const time_t * timep, long offset,
179 const struct state * sp, struct tm * tmp));
180static int tmcomp P((const struct tm * atmp,
181 const struct tm * btmp));
182static time_t transtime P((time_t janfirst, int year,
183 const struct rule * rulep, long offset));
184static int tzload P((const char * name, struct state * sp));
185static int tzparse P((const char * name, struct state * sp,
186 int lastditch));
187
188#ifdef ALL_STATE
189static struct state * lclptr;
190static struct state * gmtptr;
191#endif /* defined ALL_STATE */
192
193#ifndef ALL_STATE
194static struct state lclmem;
195static struct state gmtmem;
196#define lclptr (&lclmem)
197#define gmtptr (&gmtmem)
198#endif /* State Farm */
199
200static int lcl_is_set;
201static int gmt_is_set;
e747b257
KB
202
203char * tzname[2] = {
4acda82d
KB
204 WILDABBR,
205 WILDABBR
674afc9d
BJ
206};
207
e747b257
KB
208#ifdef USG_COMPAT
209time_t timezone = 0;
210int daylight = 0;
4acda82d
KB
211#endif /* defined USG_COMPAT */
212
213#ifdef ALTZONE
214time_t altzone = 0;
215#endif /* defined ALTZONE */
674afc9d 216
e747b257
KB
217static long
218detzcode(codep)
4acda82d 219const char * const codep;
674afc9d 220{
e747b257
KB
221 register long result;
222 register int i;
674afc9d 223
e747b257
KB
224 result = 0;
225 for (i = 0; i < 4; ++i)
226 result = (result << 8) | (codep[i] & 0xff);
227 return result;
674afc9d
BJ
228}
229
4acda82d
KB
230static void
231settzname()
674afc9d 232{
4acda82d
KB
233 register const struct state * const sp = lclptr;
234 register int i;
235
236 tzname[0] = WILDABBR;
237 tzname[1] = WILDABBR;
238#ifdef USG_COMPAT
239 daylight = 0;
240 timezone = 0;
241#endif /* defined USG_COMPAT */
242#ifdef ALTZONE
243 altzone = 0;
244#endif /* defined ALTZONE */
245#ifdef ALL_STATE
246 if (sp == NULL) {
247 tzname[0] = tzname[1] = GMT;
248 return;
249 }
250#endif /* defined ALL_STATE */
251 for (i = 0; i < sp->typecnt; ++i) {
252 register const struct ttinfo * const ttisp = &sp->ttis[i];
253
254 tzname[ttisp->tt_isdst] =
255 (char *) &sp->chars[ttisp->tt_abbrind];
256#ifdef USG_COMPAT
257 if (ttisp->tt_isdst)
258 daylight = 1;
259 if (i == 0 || !ttisp->tt_isdst)
260 timezone = -(ttisp->tt_gmtoff);
261#endif /* defined USG_COMPAT */
262#ifdef ALTZONE
263 if (i == 0 || ttisp->tt_isdst)
264 altzone = -(ttisp->tt_gmtoff);
265#endif /* defined ALTZONE */
266 }
267 /*
268 ** And to get the latest zone names into tzname. . .
269 */
270 for (i = 0; i < sp->timecnt; ++i) {
271 register const struct ttinfo * const ttisp =
272 &sp->ttis[sp->types[i]];
273
274 tzname[ttisp->tt_isdst] =
275 (char *) &sp->chars[ttisp->tt_abbrind];
276 }
277}
278
279static int
280tzload(name, sp)
281register const char * name;
282register struct state * const sp;
283{
284 register const char * p;
285 register int i;
286 register int fid;
674afc9d 287
4acda82d 288 if (name == NULL && (name = TZDEFAULT) == NULL)
e747b257
KB
289 return -1;
290 {
4acda82d 291 char fullname[FILENAME_MAX + 1];
674afc9d 292
4acda82d
KB
293 if (name[0] == ':')
294 ++name;
ea756c09 295 if (name[0] != '/') {
4acda82d 296 if ((p = TZDIR) == NULL)
e747b257
KB
297 return -1;
298 if ((strlen(p) + strlen(name) + 1) >= sizeof fullname)
299 return -1;
300 (void) strcpy(fullname, p);
301 (void) strcat(fullname, "/");
302 (void) strcat(fullname, name);
e747b257
KB
303 name = fullname;
304 }
4acda82d 305 if ((fid = open(name, OPEN_MODE)) == -1)
e747b257 306 return -1;
674afc9d 307 }
e747b257 308 {
4acda82d
KB
309 register const struct tzhead * tzhp;
310 char buf[sizeof *sp + sizeof *tzhp];
311 int ttisstdcnt;
674afc9d 312
e747b257
KB
313 i = read(fid, buf, sizeof buf);
314 if (close(fid) != 0 || i < sizeof *tzhp)
315 return -1;
316 tzhp = (struct tzhead *) buf;
4acda82d
KB
317 ttisstdcnt = (int) detzcode(tzhp->tzh_ttisstdcnt);
318 sp->leapcnt = (int) detzcode(tzhp->tzh_leapcnt);
319 sp->timecnt = (int) detzcode(tzhp->tzh_timecnt);
320 sp->typecnt = (int) detzcode(tzhp->tzh_typecnt);
321 sp->charcnt = (int) detzcode(tzhp->tzh_charcnt);
322 if (sp->leapcnt < 0 || sp->leapcnt > TZ_MAX_LEAPS ||
323 sp->typecnt <= 0 || sp->typecnt > TZ_MAX_TYPES ||
324 sp->timecnt < 0 || sp->timecnt > TZ_MAX_TIMES ||
325 sp->charcnt < 0 || sp->charcnt > TZ_MAX_CHARS ||
326 (ttisstdcnt != sp->typecnt && ttisstdcnt != 0))
e747b257
KB
327 return -1;
328 if (i < sizeof *tzhp +
4acda82d
KB
329 sp->timecnt * (4 + sizeof (char)) +
330 sp->typecnt * (4 + 2 * sizeof (char)) +
331 sp->charcnt * sizeof (char) +
332 sp->leapcnt * 2 * 4 +
333 ttisstdcnt * sizeof (char))
e747b257
KB
334 return -1;
335 p = buf + sizeof *tzhp;
4acda82d
KB
336 for (i = 0; i < sp->timecnt; ++i) {
337 sp->ats[i] = detzcode(p);
e747b257
KB
338 p += 4;
339 }
4acda82d
KB
340 for (i = 0; i < sp->timecnt; ++i) {
341 sp->types[i] = (unsigned char) *p++;
342 if (sp->types[i] >= sp->typecnt)
343 return -1;
344 }
345 for (i = 0; i < sp->typecnt; ++i) {
e747b257 346 register struct ttinfo * ttisp;
674afc9d 347
4acda82d 348 ttisp = &sp->ttis[i];
e747b257
KB
349 ttisp->tt_gmtoff = detzcode(p);
350 p += 4;
351 ttisp->tt_isdst = (unsigned char) *p++;
4acda82d
KB
352 if (ttisp->tt_isdst != 0 && ttisp->tt_isdst != 1)
353 return -1;
e747b257 354 ttisp->tt_abbrind = (unsigned char) *p++;
4acda82d
KB
355 if (ttisp->tt_abbrind < 0 ||
356 ttisp->tt_abbrind > sp->charcnt)
357 return -1;
358 }
359 for (i = 0; i < sp->charcnt; ++i)
360 sp->chars[i] = *p++;
361 sp->chars[i] = '\0'; /* ensure '\0' at end */
362 for (i = 0; i < sp->leapcnt; ++i) {
363 register struct lsinfo * lsisp;
364
365 lsisp = &sp->lsis[i];
366 lsisp->ls_trans = detzcode(p);
367 p += 4;
368 lsisp->ls_corr = detzcode(p);
369 p += 4;
370 }
371 for (i = 0; i < sp->typecnt; ++i) {
372 register struct ttinfo * ttisp;
373
374 ttisp = &sp->ttis[i];
375 if (ttisstdcnt == 0)
376 ttisp->tt_ttisstd = FALSE;
377 else {
378 ttisp->tt_ttisstd = *p++;
379 if (ttisp->tt_ttisstd != TRUE &&
380 ttisp->tt_ttisstd != FALSE)
381 return -1;
382 }
e747b257 383 }
e747b257 384 }
4acda82d
KB
385 return 0;
386}
387
388static const int mon_lengths[2][MONSPERYEAR] = {
389 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31,
390 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
391};
392
393static const int year_lengths[2] = {
394 DAYSPERNYEAR, DAYSPERLYEAR
395};
396
397/*
398** Given a pointer into a time zone string, scan until a character that is not
399** a valid character in a zone name is found. Return a pointer to that
400** character.
401*/
402
403static const char *
404getzname(strp)
405register const char * strp;
406{
407 register char c;
408
409 while ((c = *strp) != '\0' && !isdigit(c) && c != ',' && c != '-' &&
410 c != '+')
411 ++strp;
412 return strp;
413}
414
415/*
416** Given a pointer into a time zone string, extract a number from that string.
417** Check that the number is within a specified range; if it is not, return
418** NULL.
419** Otherwise, return a pointer to the first character not part of the number.
420*/
421
422static const char *
423getnum(strp, nump, min, max)
424register const char * strp;
425int * const nump;
426const int min;
427const int max;
428{
429 register char c;
430 register int num;
431
432 if (strp == NULL || !isdigit(*strp))
433 return NULL;
434 num = 0;
435 while ((c = *strp) != '\0' && isdigit(c)) {
436 num = num * 10 + (c - '0');
437 if (num > max)
438 return NULL; /* illegal value */
439 ++strp;
440 }
441 if (num < min)
442 return NULL; /* illegal value */
443 *nump = num;
444 return strp;
445}
446
447/*
448** Given a pointer into a time zone string, extract a number of seconds,
449** in hh[:mm[:ss]] form, from the string.
450** If any error occurs, return NULL.
451** Otherwise, return a pointer to the first character not part of the number
452** of seconds.
453*/
454
455static const char *
456getsecs(strp, secsp)
457register const char * strp;
458long * const secsp;
459{
460 int num;
461
462 strp = getnum(strp, &num, 0, HOURSPERDAY);
463 if (strp == NULL)
464 return NULL;
465 *secsp = num * SECSPERHOUR;
466 if (*strp == ':') {
467 ++strp;
468 strp = getnum(strp, &num, 0, MINSPERHOUR - 1);
469 if (strp == NULL)
470 return NULL;
471 *secsp += num * SECSPERMIN;
472 if (*strp == ':') {
473 ++strp;
474 strp = getnum(strp, &num, 0, SECSPERMIN - 1);
475 if (strp == NULL)
476 return NULL;
477 *secsp += num;
478 }
479 }
480 return strp;
481}
482
483/*
484** Given a pointer into a time zone string, extract an offset, in
485** [+-]hh[:mm[:ss]] form, from the string.
486** If any error occurs, return NULL.
487** Otherwise, return a pointer to the first character not part of the time.
488*/
489
490static const char *
491getoffset(strp, offsetp)
492register const char * strp;
493long * const offsetp;
494{
495 register int neg;
496
497 if (*strp == '-') {
498 neg = 1;
499 ++strp;
500 } else if (isdigit(*strp) || *strp++ == '+')
501 neg = 0;
502 else return NULL; /* illegal offset */
503 strp = getsecs(strp, offsetp);
504 if (strp == NULL)
505 return NULL; /* illegal time */
506 if (neg)
507 *offsetp = -*offsetp;
508 return strp;
509}
510
511/*
512** Given a pointer into a time zone string, extract a rule in the form
513** date[/time]. See POSIX section 8 for the format of "date" and "time".
514** If a valid rule is not found, return NULL.
515** Otherwise, return a pointer to the first character not part of the rule.
516*/
517
518static const char *
519getrule(strp, rulep)
520const char * strp;
521register struct rule * const rulep;
522{
523 if (*strp == 'J') {
524 /*
525 ** Julian day.
526 */
527 rulep->r_type = JULIAN_DAY;
528 ++strp;
529 strp = getnum(strp, &rulep->r_day, 1, DAYSPERNYEAR);
530 } else if (*strp == 'M') {
531 /*
532 ** Month, week, day.
533 */
534 rulep->r_type = MONTH_NTH_DAY_OF_WEEK;
535 ++strp;
536 strp = getnum(strp, &rulep->r_mon, 1, MONSPERYEAR);
537 if (strp == NULL)
538 return NULL;
539 if (*strp++ != '.')
540 return NULL;
541 strp = getnum(strp, &rulep->r_week, 1, 5);
542 if (strp == NULL)
543 return NULL;
544 if (*strp++ != '.')
545 return NULL;
546 strp = getnum(strp, &rulep->r_day, 0, DAYSPERWEEK - 1);
547 } else if (isdigit(*strp)) {
548 /*
549 ** Day of year.
550 */
551 rulep->r_type = DAY_OF_YEAR;
552 strp = getnum(strp, &rulep->r_day, 0, DAYSPERLYEAR - 1);
553 } else return NULL; /* invalid format */
554 if (strp == NULL)
555 return NULL;
556 if (*strp == '/') {
557 /*
558 ** Time specified.
559 */
560 ++strp;
561 strp = getsecs(strp, &rulep->r_time);
562 } else rulep->r_time = 2 * SECSPERHOUR; /* default = 2:00:00 */
563 return strp;
564}
565
566/*
567** Given the Epoch-relative time of January 1, 00:00:00 GMT, in a year, the
568** year, a rule, and the offset from GMT at the time that rule takes effect,
569** calculate the Epoch-relative time that rule takes effect.
570*/
571
572static time_t
573transtime(janfirst, year, rulep, offset)
574const time_t janfirst;
575const int year;
576register const struct rule * const rulep;
577const long offset;
578{
579 register int leapyear;
580 register time_t value;
581 register int i;
582 int d, m1, yy0, yy1, yy2, dow;
583
584 leapyear = isleap(year);
585 switch (rulep->r_type) {
586
587 case JULIAN_DAY:
588 /*
589 ** Jn - Julian day, 1 == January 1, 60 == March 1 even in leap
590 ** years.
591 ** In non-leap years, or if the day number is 59 or less, just
592 ** add SECSPERDAY times the day number-1 to the time of
593 ** January 1, midnight, to get the day.
594 */
595 value = janfirst + (rulep->r_day - 1) * SECSPERDAY;
596 if (leapyear && rulep->r_day >= 60)
597 value += SECSPERDAY;
598 break;
599
600 case DAY_OF_YEAR:
601 /*
602 ** n - day of year.
603 ** Just add SECSPERDAY times the day number to the time of
604 ** January 1, midnight, to get the day.
605 */
606 value = janfirst + rulep->r_day * SECSPERDAY;
607 break;
608
609 case MONTH_NTH_DAY_OF_WEEK:
610 /*
611 ** Mm.n.d - nth "dth day" of month m.
612 */
613 value = janfirst;
614 for (i = 0; i < rulep->r_mon - 1; ++i)
615 value += mon_lengths[leapyear][i] * SECSPERDAY;
616
617 /*
618 ** Use Zeller's Congruence to get day-of-week of first day of
619 ** month.
620 */
621 m1 = (rulep->r_mon + 9) % 12 + 1;
622 yy0 = (rulep->r_mon <= 2) ? (year - 1) : year;
623 yy1 = yy0 / 100;
624 yy2 = yy0 % 100;
625 dow = ((26 * m1 - 2) / 10 +
626 1 + yy2 + yy2 / 4 + yy1 / 4 - 2 * yy1) % 7;
627 if (dow < 0)
628 dow += DAYSPERWEEK;
629
630 /*
631 ** "dow" is the day-of-week of the first day of the month. Get
632 ** the day-of-month (zero-origin) of the first "dow" day of the
633 ** month.
634 */
635 d = rulep->r_day - dow;
636 if (d < 0)
637 d += DAYSPERWEEK;
638 for (i = 1; i < rulep->r_week; ++i) {
639 if (d + DAYSPERWEEK >=
640 mon_lengths[leapyear][rulep->r_mon - 1])
641 break;
642 d += DAYSPERWEEK;
643 }
644
645 /*
646 ** "d" is the day-of-month (zero-origin) of the day we want.
647 */
648 value += d * SECSPERDAY;
649 break;
650 }
651
e747b257 652 /*
4acda82d
KB
653 ** "value" is the Epoch-relative time of 00:00:00 GMT on the day in
654 ** question. To get the Epoch-relative time of the specified local
655 ** time on that day, add the transition time and the current offset
656 ** from GMT.
e747b257 657 */
4acda82d
KB
658 return value + rulep->r_time + offset;
659}
660
661/*
662** Given a POSIX section 8-style TZ string, fill in the rule tables as
663** appropriate.
664*/
665
666static int
667tzparse(name, sp, lastditch)
668const char * name;
669register struct state * const sp;
670const int lastditch;
671{
672 const char * stdname;
673 const char * dstname;
674 int stdlen;
675 int dstlen;
676 long stdoffset;
677 long dstoffset;
678 register time_t * atp;
679 register unsigned char * typep;
680 register char * cp;
681 register int load_result;
682
683 stdname = name;
684 if (lastditch) {
685 stdlen = strlen(name); /* length of standard zone name */
686 name += stdlen;
687 if (stdlen >= sizeof sp->chars)
688 stdlen = (sizeof sp->chars) - 1;
689 } else {
690 name = getzname(name);
691 stdlen = name - stdname;
692 if (stdlen < 3)
e747b257 693 return -1;
4acda82d
KB
694 }
695 if (*name == '\0')
de716a99 696 return -1;
4acda82d
KB
697 else {
698 name = getoffset(name, &stdoffset);
699 if (name == NULL)
e747b257 700 return -1;
4acda82d
KB
701 }
702 load_result = tzload(TZDEFRULES, sp);
703 if (load_result != 0)
704 sp->leapcnt = 0; /* so, we're off a little */
705 if (*name != '\0') {
706 dstname = name;
707 name = getzname(name);
708 dstlen = name - dstname; /* length of DST zone name */
709 if (dstlen < 3)
710 return -1;
711 if (*name != '\0' && *name != ',' && *name != ';') {
712 name = getoffset(name, &dstoffset);
713 if (name == NULL)
714 return -1;
715 } else dstoffset = stdoffset - SECSPERHOUR;
716 if (*name == ',' || *name == ';') {
717 struct rule start;
718 struct rule end;
719 register int year;
720 register time_t janfirst;
721 time_t starttime;
722 time_t endtime;
674afc9d 723
4acda82d
KB
724 ++name;
725 if ((name = getrule(name, &start)) == NULL)
726 return -1;
727 if (*name++ != ',')
728 return -1;
729 if ((name = getrule(name, &end)) == NULL)
730 return -1;
731 if (*name != '\0')
732 return -1;
733 sp->typecnt = 2; /* standard time and DST */
734 /*
735 ** Two transitions per year, from EPOCH_YEAR to 2037.
736 */
737 sp->timecnt = 2 * (2037 - EPOCH_YEAR + 1);
738 if (sp->timecnt > TZ_MAX_TIMES)
739 return -1;
740 sp->ttis[0].tt_gmtoff = -dstoffset;
741 sp->ttis[0].tt_isdst = 1;
742 sp->ttis[0].tt_abbrind = stdlen + 1;
743 sp->ttis[1].tt_gmtoff = -stdoffset;
744 sp->ttis[1].tt_isdst = 0;
745 sp->ttis[1].tt_abbrind = 0;
746 atp = sp->ats;
747 typep = sp->types;
748 janfirst = 0;
749 for (year = EPOCH_YEAR; year <= 2037; ++year) {
750 starttime = transtime(janfirst, year, &start,
751 stdoffset);
752 endtime = transtime(janfirst, year, &end,
753 dstoffset);
754 if (starttime > endtime) {
755 *atp++ = endtime;
756 *typep++ = 1; /* DST ends */
757 *atp++ = starttime;
758 *typep++ = 0; /* DST begins */
759 } else {
760 *atp++ = starttime;
761 *typep++ = 0; /* DST begins */
762 *atp++ = endtime;
763 *typep++ = 1; /* DST ends */
764 }
765 janfirst +=
766 year_lengths[isleap(year)] * SECSPERDAY;
767 }
e747b257 768 } else {
4acda82d
KB
769 int sawstd;
770 int sawdst;
771 long stdfix;
772 long dstfix;
773 long oldfix;
774 int isdst;
775 register int i;
674afc9d 776
4acda82d
KB
777 if (*name != '\0')
778 return -1;
779 if (load_result != 0)
780 return -1;
781 /*
782 ** Compute the difference between the real and
783 ** prototype standard and summer time offsets
784 ** from GMT, and put the real standard and summer
785 ** time offsets into the rules in place of the
786 ** prototype offsets.
787 */
788 sawstd = FALSE;
789 sawdst = FALSE;
790 stdfix = 0;
791 dstfix = 0;
792 for (i = 0; i < sp->typecnt; ++i) {
793 if (sp->ttis[i].tt_isdst) {
794 oldfix = dstfix;
795 dstfix =
796 sp->ttis[i].tt_gmtoff + dstoffset;
797 if (sawdst && (oldfix != dstfix))
798 return -1;
799 sp->ttis[i].tt_gmtoff = -dstoffset;
800 sp->ttis[i].tt_abbrind = stdlen + 1;
801 sawdst = TRUE;
802 } else {
803 oldfix = stdfix;
804 stdfix =
805 sp->ttis[i].tt_gmtoff + stdoffset;
806 if (sawstd && (oldfix != stdfix))
807 return -1;
808 sp->ttis[i].tt_gmtoff = -stdoffset;
809 sp->ttis[i].tt_abbrind = 0;
810 sawstd = TRUE;
811 }
812 }
813 /*
814 ** Make sure we have both standard and summer time.
815 */
816 if (!sawdst || !sawstd)
817 return -1;
818 /*
819 ** Now correct the transition times by shifting
820 ** them by the difference between the real and
821 ** prototype offsets. Note that this difference
822 ** can be different in standard and summer time;
823 ** the prototype probably has a 1-hour difference
824 ** between standard and summer time, but a different
825 ** difference can be specified in TZ.
826 */
827 isdst = FALSE; /* we start in standard time */
828 for (i = 0; i < sp->timecnt; ++i) {
829 register const struct ttinfo * ttisp;
5d10bbb4 830
4acda82d
KB
831 /*
832 ** If summer time is in effect, and the
833 ** transition time was not specified as
834 ** standard time, add the summer time
835 ** offset to the transition time;
836 ** otherwise, add the standard time offset
837 ** to the transition time.
838 */
839 ttisp = &sp->ttis[sp->types[i]];
840 sp->ats[i] +=
841 (isdst && !ttisp->tt_ttisstd) ?
842 dstfix : stdfix;
843 isdst = ttisp->tt_isdst;
844 }
845 }
846 } else {
847 dstlen = 0;
848 sp->typecnt = 1; /* only standard time */
849 sp->timecnt = 0;
850 sp->ttis[0].tt_gmtoff = -stdoffset;
851 sp->ttis[0].tt_isdst = 0;
852 sp->ttis[0].tt_abbrind = 0;
853 }
854 sp->charcnt = stdlen + 1;
855 if (dstlen != 0)
856 sp->charcnt += dstlen + 1;
857 if (sp->charcnt > sizeof sp->chars)
5d10bbb4 858 return -1;
4acda82d
KB
859 cp = sp->chars;
860 (void) strncpy(cp, stdname, stdlen);
861 cp += stdlen;
862 *cp++ = '\0';
863 if (dstlen != 0) {
864 (void) strncpy(cp, dstname, dstlen);
865 *(cp + dstlen) = '\0';
866 }
5d10bbb4
KB
867 return 0;
868}
869
4acda82d
KB
870static void
871gmtload(sp)
872struct state * const sp;
e747b257 873{
4acda82d
KB
874 if (tzload(GMT, sp) != 0)
875 (void) tzparse(GMT, sp, TRUE);
e747b257 876}
674afc9d 877
e747b257
KB
878void
879tzset()
880{
4acda82d
KB
881 register const char * name;
882 void tzsetwall();
e747b257 883
e747b257 884 name = getenv("TZ");
4acda82d
KB
885 if (name == NULL) {
886 tzsetwall();
887 return;
888 }
889 lcl_is_set = TRUE;
890#ifdef ALL_STATE
891 if (lclptr == NULL) {
892 lclptr = (struct state *) malloc(sizeof *lclptr);
893 if (lclptr == NULL) {
894 settzname(); /* all we can do */
5d10bbb4 895 return;
4acda82d
KB
896 }
897 }
898#endif /* defined ALL_STATE */
899 if (*name == '\0') {
900 /*
901 ** User wants it fast rather than right.
902 */
903 lclptr->leapcnt = 0; /* so, we're off a little */
904 lclptr->timecnt = 0;
905 lclptr->ttis[0].tt_gmtoff = 0;
906 lclptr->ttis[0].tt_abbrind = 0;
907 (void) strcpy(lclptr->chars, GMT);
908 } else if (tzload(name, lclptr) != 0)
909 if (name[0] == ':' || tzparse(name, lclptr, FALSE) != 0)
de716a99 910 (void) gmtload(lclptr);
4acda82d
KB
911 settzname();
912}
913
914void
915tzsetwall()
916{
917 lcl_is_set = TRUE;
918#ifdef ALL_STATE
919 if (lclptr == NULL) {
920 lclptr = (struct state *) malloc(sizeof *lclptr);
921 if (lclptr == NULL) {
922 settzname(); /* all we can do */
5d10bbb4 923 return;
4acda82d 924 }
5d10bbb4 925 }
4acda82d
KB
926#endif /* defined ALL_STATE */
927 if (tzload((char *) NULL, lclptr) != 0)
928 gmtload(lclptr);
929 settzname();
674afc9d
BJ
930}
931
4acda82d
KB
932/*
933** The easy way to behave "as if no library function calls" localtime
934** is to not call it--so we drop its guts into "localsub", which can be
935** freely called. (And no, the PANS doesn't require the above behavior--
936** but it *is* desirable.)
937**
938** The unused offset argument is for the benefit of mktime variants.
939*/
940
941/*ARGSUSED*/
942static void
943localsub(timep, offset, tmp)
944const time_t * const timep;
945const long offset;
946struct tm * const tmp;
674afc9d 947{
c5980113 948 register struct state * sp;
4acda82d 949 register const struct ttinfo * ttisp;
e747b257 950 register int i;
4acda82d 951 const time_t t = *timep;
e747b257 952
4acda82d
KB
953 if (!lcl_is_set)
954 tzset();
955 sp = lclptr;
956#ifdef ALL_STATE
957 if (sp == NULL) {
958 gmtsub(timep, offset, tmp);
959 return;
960 }
961#endif /* defined ALL_STATE */
962 if (sp->timecnt == 0 || t < sp->ats[0]) {
e747b257 963 i = 0;
4acda82d
KB
964 while (sp->ttis[i].tt_isdst)
965 if (++i >= sp->typecnt) {
e747b257
KB
966 i = 0;
967 break;
968 }
969 } else {
4acda82d
KB
970 for (i = 1; i < sp->timecnt; ++i)
971 if (t < sp->ats[i])
e747b257 972 break;
4acda82d 973 i = sp->types[i - 1];
674afc9d 974 }
4acda82d 975 ttisp = &sp->ttis[i];
e747b257
KB
976 /*
977 ** To get (wrong) behavior that's compatible with System V Release 2.0
978 ** you'd replace the statement below with
4acda82d
KB
979 ** t += ttisp->tt_gmtoff;
980 ** timesub(&t, 0L, sp, tmp);
e747b257 981 */
4acda82d 982 timesub(&t, ttisp->tt_gmtoff, sp, tmp);
e747b257 983 tmp->tm_isdst = ttisp->tt_isdst;
4acda82d
KB
984 tzname[tmp->tm_isdst] = (char *) &sp->chars[ttisp->tt_abbrind];
985 tmp->tm_zone = &sp->chars[ttisp->tt_abbrind];
674afc9d
BJ
986}
987
e747b257 988struct tm *
4acda82d
KB
989localtime(timep)
990const time_t * const timep;
674afc9d 991{
4acda82d 992 static struct tm tm;
e747b257 993
4acda82d
KB
994 localsub(timep, 0L, &tm);
995 return &tm;
674afc9d
BJ
996}
997
4acda82d
KB
998/*
999** gmtsub is to gmtime as localsub is to localtime.
1000*/
e747b257 1001
4acda82d
KB
1002static void
1003gmtsub(timep, offset, tmp)
1004const time_t * const timep;
1005const long offset;
1006struct tm * const tmp;
1007{
1008 if (!gmt_is_set) {
1009 gmt_is_set = TRUE;
1010#ifdef ALL_STATE
1011 gmtptr = (struct state *) malloc(sizeof *gmtptr);
1012 if (gmtptr != NULL)
1013#endif /* defined ALL_STATE */
1014 gmtload(gmtptr);
1015 }
1016 timesub(timep, offset, gmtptr, tmp);
1017 /*
1018 ** Could get fancy here and deliver something such as
1019 ** "GMT+xxxx" or "GMT-xxxx" if offset is non-zero,
1020 ** but this is no time for a treasure hunt.
1021 */
1022 if (offset != 0)
1023 tmp->tm_zone = WILDABBR;
1024 else {
1025#ifdef ALL_STATE
1026 if (gmtptr == NULL)
1027 tmp->TM_ZONE = GMT;
1028 else tmp->TM_ZONE = gmtptr->chars;
1029#endif /* defined ALL_STATE */
1030#ifndef ALL_STATE
1031 tmp->tm_zone = gmtptr->chars;
1032#endif /* State Farm */
1033 }
1034}
e747b257
KB
1035
1036struct tm *
4acda82d
KB
1037gmtime(timep)
1038const time_t * const timep;
674afc9d 1039{
e747b257
KB
1040 static struct tm tm;
1041
4acda82d
KB
1042 gmtsub(timep, 0L, &tm);
1043 return &tm;
1044}
1045
4acda82d
KB
1046static void
1047timesub(timep, offset, sp, tmp)
1048const time_t * const timep;
1049const long offset;
1050register const struct state * const sp;
1051register struct tm * const tmp;
1052{
1053 register const struct lsinfo * lp;
1054 register long days;
1055 register long rem;
1056 register int y;
1057 register int yleap;
1058 register const int * ip;
1059 register long corr;
1060 register int hit;
1061 register int i;
1062
1063 corr = 0;
1064 hit = FALSE;
1065#ifdef ALL_STATE
1066 i = (sp == NULL) ? 0 : sp->leapcnt;
1067#endif /* defined ALL_STATE */
1068#ifndef ALL_STATE
1069 i = sp->leapcnt;
1070#endif /* State Farm */
1071 while (--i >= 0) {
1072 lp = &sp->lsis[i];
1073 if (*timep >= lp->ls_trans) {
1074 if (*timep == lp->ls_trans)
1075 hit = ((i == 0 && lp->ls_corr > 0) ||
1076 lp->ls_corr > sp->lsis[i - 1].ls_corr);
1077 corr = lp->ls_corr;
1078 break;
1079 }
1080 }
1081 days = *timep / SECSPERDAY;
1082 rem = *timep % SECSPERDAY;
1083#ifdef mc68k
1084 if (*timep == 0x80000000) {
1085 /*
1086 ** A 3B1 muffs the division on the most negative number.
1087 */
1088 days = -24855;
1089 rem = -11648;
1090 }
1091#endif /* mc68k */
1092 rem += (offset - corr);
e747b257 1093 while (rem < 0) {
4acda82d 1094 rem += SECSPERDAY;
e747b257
KB
1095 --days;
1096 }
4acda82d
KB
1097 while (rem >= SECSPERDAY) {
1098 rem -= SECSPERDAY;
e747b257
KB
1099 ++days;
1100 }
4acda82d
KB
1101 tmp->tm_hour = (int) (rem / SECSPERHOUR);
1102 rem = rem % SECSPERHOUR;
1103 tmp->tm_min = (int) (rem / SECSPERMIN);
1104 tmp->tm_sec = (int) (rem % SECSPERMIN);
1105 if (hit)
1106 /*
1107 ** A positive leap second requires a special
1108 ** representation. This uses "... ??:59:60".
1109 */
1110 ++(tmp->tm_sec);
1111 tmp->tm_wday = (int) ((EPOCH_WDAY + days) % DAYSPERWEEK);
e747b257 1112 if (tmp->tm_wday < 0)
4acda82d 1113 tmp->tm_wday += DAYSPERWEEK;
e747b257
KB
1114 y = EPOCH_YEAR;
1115 if (days >= 0)
1116 for ( ; ; ) {
1117 yleap = isleap(y);
1118 if (days < (long) year_lengths[yleap])
1119 break;
1120 ++y;
1121 days = days - (long) year_lengths[yleap];
1122 }
1123 else do {
1124 --y;
1125 yleap = isleap(y);
1126 days = days + (long) year_lengths[yleap];
1127 } while (days < 0);
1128 tmp->tm_year = y - TM_YEAR_BASE;
1129 tmp->tm_yday = (int) days;
1130 ip = mon_lengths[yleap];
1131 for (tmp->tm_mon = 0; days >= (long) ip[tmp->tm_mon]; ++(tmp->tm_mon))
1132 days = days - (long) ip[tmp->tm_mon];
1133 tmp->tm_mday = (int) (days + 1);
1134 tmp->tm_isdst = 0;
f32fe127 1135 tmp->tm_gmtoff = offset;
4acda82d
KB
1136}
1137
1138/*
1139** A la X3J11
1140*/
1141
1142char *
1143asctime(timeptr)
1144register const struct tm * timeptr;
1145{
1146 static const char wday_name[DAYSPERWEEK][3] = {
1147 "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
1148 };
1149 static const char mon_name[MONSPERYEAR][3] = {
1150 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
1151 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
1152 };
1153 static char result[26];
1154
1155 (void) sprintf(result, "%.3s %.3s%3d %02.2d:%02.2d:%02.2d %d\n",
1156 wday_name[timeptr->tm_wday],
1157 mon_name[timeptr->tm_mon],
1158 timeptr->tm_mday, timeptr->tm_hour,
1159 timeptr->tm_min, timeptr->tm_sec,
1160 TM_YEAR_BASE + timeptr->tm_year);
1161 return result;
1162}
1163
1164char *
1165ctime(timep)
1166const time_t * const timep;
1167{
1168 return asctime(localtime(timep));
1169}
1170
1171/*
1172** Adapted from code provided by Robert Elz, who writes:
1173** The "best" way to do mktime I think is based on an idea of Bob
1174** Kridle's (so its said...) from a long time ago. (mtxinu!kridle now).
1175** It does a binary search of the time_t space. Since time_t's are
1176** just 32 bits, its a max of 32 iterations (even at 64 bits it
1177** would still be very reasonable).
1178*/
1179
1180#ifndef WRONG
1181#define WRONG (-1)
1182#endif /* !defined WRONG */
1183
1184static void
1185normalize(tensptr, unitsptr, base)
1186int * const tensptr;
1187int * const unitsptr;
1188const int base;
1189{
1190 if (*unitsptr >= base) {
1191 *tensptr += *unitsptr / base;
1192 *unitsptr %= base;
1193 } else if (*unitsptr < 0) {
e7093b65
KB
1194 *tensptr -= 1 + (-(*unitsptr + 1)) / base;
1195 *unitsptr = base - 1 - (-(*unitsptr + 1)) % base;
4acda82d
KB
1196 }
1197}
1198
1199static int
1200tmcomp(atmp, btmp)
1201register const struct tm * const atmp;
1202register const struct tm * const btmp;
1203{
1204 register int result;
1205
1206 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1207 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1208 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1209 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1210 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1211 result = atmp->tm_sec - btmp->tm_sec;
1212 return result;
1213}
1214
1215static time_t
1216time2(tmp, funcp, offset, okayp)
1217struct tm * const tmp;
1218void (* const funcp)();
1219const long offset;
1220int * const okayp;
1221{
1222 register const struct state * sp;
1223 register int dir;
1224 register int bits;
1225 register int i, j ;
1226 register int saved_seconds;
1227 time_t newt;
1228 time_t t;
1229 struct tm yourtm, mytm;
1230
1231 *okayp = FALSE;
1232 yourtm = *tmp;
1233 if (yourtm.tm_sec >= SECSPERMIN + 2 || yourtm.tm_sec < 0)
1234 normalize(&yourtm.tm_min, &yourtm.tm_sec, SECSPERMIN);
1235 normalize(&yourtm.tm_hour, &yourtm.tm_min, MINSPERHOUR);
1236 normalize(&yourtm.tm_mday, &yourtm.tm_hour, HOURSPERDAY);
1237 normalize(&yourtm.tm_year, &yourtm.tm_mon, MONSPERYEAR);
1238 while (yourtm.tm_mday <= 0) {
1239 --yourtm.tm_year;
1240 yourtm.tm_mday +=
1241 year_lengths[isleap(yourtm.tm_year + TM_YEAR_BASE)];
1242 }
1243 for ( ; ; ) {
1244 i = mon_lengths[isleap(yourtm.tm_year +
1245 TM_YEAR_BASE)][yourtm.tm_mon];
1246 if (yourtm.tm_mday <= i)
1247 break;
1248 yourtm.tm_mday -= i;
1249 if (++yourtm.tm_mon >= MONSPERYEAR) {
1250 yourtm.tm_mon = 0;
1251 ++yourtm.tm_year;
1252 }
1253 }
1254 saved_seconds = yourtm.tm_sec;
1255 yourtm.tm_sec = 0;
1256 /*
1257 ** Calculate the number of magnitude bits in a time_t
1258 ** (this works regardless of whether time_t is
1259 ** signed or unsigned, though lint complains if unsigned).
1260 */
1261 for (bits = 0, t = 1; t > 0; ++bits, t <<= 1)
1262 ;
1263 /*
1264 ** If time_t is signed, then 0 is the median value,
1265 ** if time_t is unsigned, then 1 << bits is median.
1266 */
1267 t = (t < 0) ? 0 : ((time_t) 1 << bits);
1268 for ( ; ; ) {
1269 (*funcp)(&t, offset, &mytm);
1270 dir = tmcomp(&mytm, &yourtm);
1271 if (dir != 0) {
1272 if (bits-- < 0)
1273 return WRONG;
1274 if (bits < 0)
1275 --t;
1276 else if (dir > 0)
1277 t -= (time_t) 1 << bits;
1278 else t += (time_t) 1 << bits;
1279 continue;
1280 }
1281 if (yourtm.tm_isdst < 0 || mytm.tm_isdst == yourtm.tm_isdst)
1282 break;
1283 /*
1284 ** Right time, wrong type.
1285 ** Hunt for right time, right type.
1286 ** It's okay to guess wrong since the guess
1287 ** gets checked.
1288 */
1289 sp = (const struct state *)
1290 ((funcp == localsub) ? lclptr : gmtptr);
1291#ifdef ALL_STATE
1292 if (sp == NULL)
1293 return WRONG;
1294#endif /* defined ALL_STATE */
1295 for (i = 0; i < sp->typecnt; ++i) {
1296 if (sp->ttis[i].tt_isdst != yourtm.tm_isdst)
1297 continue;
1298 for (j = 0; j < sp->typecnt; ++j) {
1299 if (sp->ttis[j].tt_isdst == yourtm.tm_isdst)
1300 continue;
1301 newt = t + sp->ttis[j].tt_gmtoff -
1302 sp->ttis[i].tt_gmtoff;
1303 (*funcp)(&newt, offset, &mytm);
1304 if (tmcomp(&mytm, &yourtm) != 0)
1305 continue;
1306 if (mytm.tm_isdst != yourtm.tm_isdst)
1307 continue;
1308 /*
1309 ** We have a match.
1310 */
1311 t = newt;
1312 goto label;
1313 }
1314 }
1315 return WRONG;
1316 }
1317label:
1318 t += saved_seconds;
1319 (*funcp)(&t, offset, tmp);
1320 *okayp = TRUE;
1321 return t;
1322}
1323
1324static time_t
1325time1(tmp, funcp, offset)
1326struct tm * const tmp;
1327void (* const funcp)();
1328const long offset;
1329{
1330 register time_t t;
1331 register const struct state * sp;
1332 register int samei, otheri;
1333 int okay;
1334
1335 if (tmp->tm_isdst > 1)
12f811e7 1336 tmp->tm_isdst = 1;
4acda82d
KB
1337 t = time2(tmp, funcp, offset, &okay);
1338 if (okay || tmp->tm_isdst < 0)
1339 return t;
1340 /*
1341 ** We're supposed to assume that somebody took a time of one type
1342 ** and did some math on it that yielded a "struct tm" that's bad.
1343 ** We try to divine the type they started from and adjust to the
1344 ** type they need.
1345 */
1346 sp = (const struct state *) ((funcp == localsub) ? lclptr : gmtptr);
1347#ifdef ALL_STATE
1348 if (sp == NULL)
1349 return WRONG;
1350#endif /* defined ALL_STATE */
1351 for (samei = 0; samei < sp->typecnt; ++samei) {
1352 if (sp->ttis[samei].tt_isdst != tmp->tm_isdst)
1353 continue;
1354 for (otheri = 0; otheri < sp->typecnt; ++otheri) {
1355 if (sp->ttis[otheri].tt_isdst == tmp->tm_isdst)
1356 continue;
1357 tmp->tm_sec += sp->ttis[otheri].tt_gmtoff -
1358 sp->ttis[samei].tt_gmtoff;
1359 tmp->tm_isdst = !tmp->tm_isdst;
1360 t = time2(tmp, funcp, offset, &okay);
1361 if (okay)
1362 return t;
1363 tmp->tm_sec -= sp->ttis[otheri].tt_gmtoff -
1364 sp->ttis[samei].tt_gmtoff;
1365 tmp->tm_isdst = !tmp->tm_isdst;
1366 }
1367 }
1368 return WRONG;
1369}
1370
1371time_t
1372mktime(tmp)
1373struct tm * const tmp;
1374{
1375 return time1(tmp, localsub, 0L);
1376}