gmtime
gmtime is a function name used in several programming environments to convert a time value to a broken-down representation of Coordinated Universal Time (UTC). In general, it takes a time value such as a timestamp and returns the components of the corresponding calendar date and time expressed in UTC (year, month, day, hour, minute, second).
In C, the prototype is struct tm *gmtime(const time_t *timep). It returns a pointer to a statically
In Python, time.gmtime([seconds]) returns a time.struct_time in UTC. If seconds is omitted, the current time is
See also: time.localtime, mktime, time module utilities that handle local time and conversions between time representations.