home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / cuj9301.zip / 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.