import tput from NetBSD
[minix3.git] / lib / libc / time / tzfile.h
blob9a8bf8eb458a48a9c28c5b09b34013330c837efe
1 /* $NetBSD: tzfile.h,v 1.10 2012/08/09 12:38:25 christos Exp $ */
3 #ifndef TZFILE_H
4 #define TZFILE_H
6 /*
7 ** This file is in the public domain, so clarified as of
8 ** 1996-06-05 by Arthur David Olson.
9 */
12 ** This header is for use ONLY with the time conversion code.
13 ** There is no guarantee that it will remain unchanged,
14 ** or that it will remain at all.
15 ** Do NOT copy it to any system include directory.
16 ** Thank you!
20 ** Information about time zone files.
23 #ifndef TZDIR /* Time zone object file directory */
24 #define TZDIR "/usr/share/zoneinfo"
25 #endif /* !defined TZDIR */
27 #ifndef TZDEFAULT
28 #define TZDEFAULT "/etc/localtime"
29 #endif /* !defined TZDEFAULT */
31 #ifndef TZDEFRULES
32 #define TZDEFRULES "posixrules"
33 #endif /* !defined TZDEFRULES */
36 ** Each file begins with. . .
39 #define TZ_MAGIC "TZif"
41 struct tzhead {
42 char tzh_magic[4]; /* TZ_MAGIC */
43 char tzh_version[1]; /* '\0' or '2' as of 2005 */
44 char tzh_reserved[15]; /* reserved--must be zero */
45 char tzh_ttisgmtcnt[4]; /* coded number of trans. time flags */
46 char tzh_ttisstdcnt[4]; /* coded number of trans. time flags */
47 char tzh_leapcnt[4]; /* coded number of leap seconds */
48 char tzh_timecnt[4]; /* coded number of transition times */
49 char tzh_typecnt[4]; /* coded number of local time types */
50 char tzh_charcnt[4]; /* coded number of abbr. chars */
54 ** . . .followed by. . .
56 ** tzh_timecnt (char [4])s coded transition times a la time(2)
57 ** tzh_timecnt (unsigned char)s types of local time starting at above
58 ** tzh_typecnt repetitions of
59 ** one (char [4]) coded UTC offset in seconds
60 ** one (unsigned char) used to set tm_isdst
61 ** one (unsigned char) that's an abbreviation list index
62 ** tzh_charcnt (char)s '\0'-terminated zone abbreviations
63 ** tzh_leapcnt repetitions of
64 ** one (char [4]) coded leap second transition times
65 ** one (char [4]) total correction after above
66 ** tzh_ttisstdcnt (char)s indexed by type; if TRUE, transition
67 ** time is standard time, if FALSE,
68 ** transition time is wall clock time
69 ** if absent, transition times are
70 ** assumed to be wall clock time
71 ** tzh_ttisgmtcnt (char)s indexed by type; if TRUE, transition
72 ** time is UTC, if FALSE,
73 ** transition time is local time
74 ** if absent, transition times are
75 ** assumed to be local time
79 ** If tzh_version is '2' or greater, the above is followed by a second instance
80 ** of tzhead and a second instance of the data in which each coded transition
81 ** time uses 8 rather than 4 chars,
82 ** then a POSIX-TZ-environment-variable-style string for use in handling
83 ** instants after the last transition time stored in the file
84 ** (with nothing between the newlines if there is no POSIX representation for
85 ** such instants).
89 ** In the current implementation, "tzset()" refuses to deal with files that
90 ** exceed any of the limits below.
93 #ifndef TZ_MAX_TIMES
94 #define TZ_MAX_TIMES 1200
95 #endif /* !defined TZ_MAX_TIMES */
97 #ifndef TZ_MAX_TYPES
98 #ifndef NOSOLAR
99 #define TZ_MAX_TYPES 256 /* Limited by what (unsigned char)'s can hold */
100 #endif /* !defined NOSOLAR */
101 #ifdef NOSOLAR
103 ** Must be at least 14 for Europe/Riga as of Jan 12 1995,
104 ** as noted by Earl Chew.
106 #define TZ_MAX_TYPES 20 /* Maximum number of local time types */
107 #endif /* !defined NOSOLAR */
108 #endif /* !defined TZ_MAX_TYPES */
110 #ifndef TZ_MAX_CHARS
111 #define TZ_MAX_CHARS 50 /* Maximum number of abbreviation characters */
112 /* (limited by what unsigned chars can hold) */
113 #endif /* !defined TZ_MAX_CHARS */
115 #ifndef TZ_MAX_LEAPS
116 #define TZ_MAX_LEAPS 50 /* Maximum number of leap second corrections */
117 #endif /* !defined TZ_MAX_LEAPS */
119 #define SECSPERMIN 60
120 #define MINSPERHOUR 60
121 #define HOURSPERDAY 24
122 #define DAYSPERWEEK 7
123 #define DAYSPERNYEAR 365
124 #define DAYSPERLYEAR 366
125 #define SECSPERHOUR (SECSPERMIN * MINSPERHOUR)
126 #define SECSPERDAY ((long) SECSPERHOUR * HOURSPERDAY)
127 #define MONSPERYEAR 12
129 #define TM_SUNDAY 0
130 #define TM_MONDAY 1
131 #define TM_TUESDAY 2
132 #define TM_WEDNESDAY 3
133 #define TM_THURSDAY 4
134 #define TM_FRIDAY 5
135 #define TM_SATURDAY 6
137 #define TM_JANUARY 0
138 #define TM_FEBRUARY 1
139 #define TM_MARCH 2
140 #define TM_APRIL 3
141 #define TM_MAY 4
142 #define TM_JUNE 5
143 #define TM_JULY 6
144 #define TM_AUGUST 7
145 #define TM_SEPTEMBER 8
146 #define TM_OCTOBER 9
147 #define TM_NOVEMBER 10
148 #define TM_DECEMBER 11
150 #define TM_YEAR_BASE 1900
152 #define EPOCH_YEAR 1970
153 #define EPOCH_WDAY TM_THURSDAY
155 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0))
158 ** Since everything in isleap is modulo 400 (or a factor of 400), we know that
159 ** isleap(y) == isleap(y % 400)
160 ** and so
161 ** isleap(a + b) == isleap((a + b) % 400)
162 ** or
163 ** isleap(a + b) == isleap(a % 400 + b % 400)
164 ** This is true even if % means modulo rather than Fortran remainder
165 ** (which is allowed by C89 but not C99).
166 ** We use this to avoid addition overflow problems.
169 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
171 #endif /* !defined TZFILE_H */