struct mu_timezone

From Mailutils
Revision as of 10:31, 17 December 2011 by Gray (talk | contribs) (Created page with "{{DISPLAYTITLE:struct mu_timezone}} The structure <tt>mu_timezone</tt> keeps time zone information. It is defined in <tt>mailutils/datetime.h</tt> as follows: <source lang="C">...")
(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.