gmtime()

This function is Hardware-specific implementation. It is not implemented in this Compiler.

Syntax
  #include <time.h>

  
  struct tm *gmtime(const time_t *time);

  
Description

gmtime() converts *time to Universal Coordinated Time (UTC), which is equivalent to Greenwich Mean Time (GMT).

Return

NULL, if UTC is unavailable; a pointer to a struct containing UTC otherwise.

See also

ctime()

time()