TZNAME
TZNAME is a term used in many C library implementations to refer to the two strings that denote the time zone abbreviations used for standard time and daylight saving time. In most systems these abbreviations are exposed as a two-element array of pointers to char named tzname: tzname[0] is the standard time abbreviation, and tzname[1] is the daylight saving time abbreviation. The array is populated by tzset(), which reads the active time zone specification from the TZ environment variable or the system time zone database.
Initialization and usage: When tzset is invoked, it parses the time zone information and fills tzname accordingly.
Portability and variations: The existence and naming of TZNAME are not guaranteed by the C standard. POSIX
Notes: Access to tzname can be affected by calls to tzset, and in some implementations the array
See also: TZ environment variable, tzset, localtime, time.h, strftime, timezone.