mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
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:
parent
beddc810c1
commit
bf19246ca2
3 changed files with 11 additions and 4 deletions
|
@ -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>
|
2002-09-29 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/GSFileHandle.m: Encapsulate read and write operations in
|
* Source/GSFileHandle.m: Encapsulate read and write operations in
|
||||||
|
|
Binary file not shown.
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
#ifndef NOID
|
#ifndef NOID
|
||||||
static char tzfilehid[] = "@(#)tzfile.h 7.9";
|
static char tzfilehid[] = "@(#)tzfile.h 7.14";
|
||||||
#endif /* !defined NOID */
|
#endif /* !defined NOID */
|
||||||
#endif /* !defined lint */
|
#endif /* !defined lint */
|
||||||
|
|
||||||
|
@ -45,8 +45,11 @@ static char tzfilehid[] = "@(#)tzfile.h 7.9";
|
||||||
** Each file begins with. . .
|
** Each file begins with. . .
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define TZ_MAGIC "TZif"
|
||||||
|
|
||||||
struct tzhead {
|
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_ttisgmtcnt[4]; /* coded number of trans. time flags */
|
||||||
char tzh_ttisstdcnt[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 */
|
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 (char [4])s coded transition times a la time(2)
|
||||||
** tzh_timecnt (unsigned char)s types of local time starting at above
|
** tzh_timecnt (unsigned char)s types of local time starting at above
|
||||||
** tzh_typecnt repetitions of
|
** 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) used to set tm_isdst
|
||||||
** one (unsigned char) that's an abbreviation list index
|
** one (unsigned char) that's an abbreviation list index
|
||||||
** tzh_charcnt (char)s '\0'-terminated zone abbreviations
|
** tzh_charcnt (char)s '\0'-terminated zone abbreviations
|
||||||
|
@ -74,7 +77,7 @@ struct tzhead {
|
||||||
** if absent, transition times are
|
** if absent, transition times are
|
||||||
** assumed to be wall clock time
|
** assumed to be wall clock time
|
||||||
** tzh_ttisgmtcnt (char)s indexed by type; if TRUE, transition
|
** 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
|
** transition time is local time
|
||||||
** if absent, transition times are
|
** if absent, transition times are
|
||||||
** assumed to be local time
|
** assumed to be local time
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue