home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / pub / wkermit / timedate.h < prev    next >
C/C++ Source or Header  |  2020-01-01  |  535b  |  20 lines

  1. /*  timedate.h
  2.  *
  3.  *  Header file for time and date functions
  4.  *
  5.  *  The Greenleaf Functions - Copyright (C) 1983 Greenleaf Software
  6.  *
  7.  *  Use:  Include in programs utilizing gettime & getdate functions.
  8.  */
  9. struct TIMEDATE {
  10.     int year;    /* year 1980..2099        */
  11.     int month;    /* month 1=Jan 2=Feb, etc.    */
  12.     int day;    /* day of month 0..31        */
  13.     int hours;    /* hour 0..23            */
  14.     int minutes;    /* minute 0..59            */
  15.     int seconds;    /* second 0..59            */
  16.     int hsecs;    /* 1/100ths of second 0..99    */
  17.     char dateline[47];    /* date & time together */
  18.     };
  19.  
  20.