Updated timezone information

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14605 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2002-09-30 09:27:29 +00:00
parent a53e187539
commit d8395dad43
3 changed files with 11 additions and 4 deletions

View file

@ -1,3 +1,7 @@
2002-09-30 Richard Frith-Macdonald <rfm@gnu.org>
* NSTimeZones/NSTimeZones.tar: Updated to latest information.
2002-09-29 Richard Frith-Macdonald <rfm@gnu.org>
* Source/GSFileHandle.m: Encapsulate read and write operations in

Binary file not shown.

View file

@ -21,7 +21,7 @@
#ifndef lint
#ifndef NOID
static char tzfilehid[] = "@(#)tzfile.h 7.9";
static char tzfilehid[] = "@(#)tzfile.h 7.14";
#endif /* !defined NOID */
#endif /* !defined lint */
@ -45,8 +45,11 @@ static char tzfilehid[] = "@(#)tzfile.h 7.9";
** Each file begins with. . .
*/
#define TZ_MAGIC "TZif"
struct tzhead {
char tzh_reserved[20]; /* reserved for future use */
char tzh_magic[4]; /* TZ_MAGIC */
char tzh_reserved[16]; /* reserved for future use */
char tzh_ttisgmtcnt[4]; /* coded number of trans. time flags */
char tzh_ttisstdcnt[4]; /* coded number of trans. time flags */
char tzh_leapcnt[4]; /* coded number of leap seconds */
@ -61,7 +64,7 @@ struct tzhead {
** tzh_timecnt (char [4])s coded transition times a la time(2)
** tzh_timecnt (unsigned char)s types of local time starting at above
** tzh_typecnt repetitions of
** one (char [4]) coded GMT offset in seconds
** one (char [4]) coded UTC offset in seconds
** one (unsigned char) used to set tm_isdst
** one (unsigned char) that's an abbreviation list index
** tzh_charcnt (char)s '\0'-terminated zone abbreviations
@ -74,7 +77,7 @@ struct tzhead {
** if absent, transition times are
** assumed to be wall clock time
** tzh_ttisgmtcnt (char)s indexed by type; if TRUE, transition
** time is GMT, if FALSE,
** time is UTC, if FALSE,
** transition time is local time
** if absent, transition times are
** assumed to be local time