Declaration:
struct tm *gmtime(const time_t * timer);
The value of timer is broken up into the structure
tm and expressed in Coordinated Universal Time (UTC)
also known as Greenwich Mean Time (GMT).
A pointer to the structure is returned. A null pointer is
returned if UTC is not available.
|