struct mu_timezone

From Mailutils
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.