struct mu_timezone

From Mailutils
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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.