struct mu_timezone

From Mailutils
Revision as of 13:35, 16 October 2023 by Gray (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

The structure mu_timezone keeps time zone information. It is defined in mailutils/datetime.h as follows:

struct mu_timezone
{
  int utc_offset;
  const char *tz_name;
};

Its members are:

tc_offset
Seconds east of UTC.
tz_name
Nickname for this timezone, if known. NULL otherwise. It is always considered to be a pointer to static string, so should never be freed.