home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_01 / 1101117a < prev    next >
Text File  |  1992-11-19  |  160b  |  12 lines

  1. /* date.h */
  2.  
  3. struct Date
  4. {
  5.     int day;
  6.     int month;
  7.     int year;
  8. };
  9. typedef struct Date Date;
  10.  
  11. Date* date_interval(const Date *, const Date *);
  12.