Difference between revisions of "Mu utc offset"
From Mailutils
Jump to navigationJump to search (Created page with "{{DISPLAYTITLE:mu_utl_offset}} <syntaxhighlight lang="C"> #include <mailutils/datetime.h> int mu_utc_offset (void); </syntaxhighlight> The <tt>mu_utc_offset</tt> function retu...") |
|||
Line 8: | Line 8: | ||
The <tt>mu_utc_offset</tt> function returns the offset in seconds of the current time zone from UTC. The value is positive if the time zone lies east of UMC and negative otherwise. | The <tt>mu_utc_offset</tt> function returns the offset in seconds of the current time zone from UTC. The value is positive if the time zone lies east of UMC and negative otherwise. | ||
+ | |||
+ | == See also == | ||
+ | [[mu_datetime_tz_local]] | ||
+ | |||
+ | [[Category:Date/Time Functions]] | ||
+ | [[Category:C API]] |
Latest revision as of 11:13, 17 December 2011
#include <mailutils/datetime.h>
int mu_utc_offset (void);
The mu_utc_offset function returns the offset in seconds of the current time zone from UTC. The value is positive if the time zone lies east of UMC and negative otherwise.