home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_02 / 1102012a < prev    next >
Text File  |  1992-12-09  |  172b  |  9 lines

  1. /* gmtime function */
  2. #include "xtime.h"
  3.  
  4. struct tm *(gmtime)(const time_t *tod)
  5.     {    /* convert to Greenwich Mean Time (UTC) */
  6.     return (_Ttotm(NULL, *tod, 0));
  7.     }
  8.  
  9.