gmtime()

This is a Hardware specific function. It is not implemented in the Compiler.

Syntax
  #include <time.h>

  
  struct tm *gmtime(const time_t *time);

  
Description

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

Return

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

See also

ctime() and

time()