// ola207 BY student name, CSCI 2170-sec, Due: mm/dd/yy // ID: DateType.h / Header file for "date" handling functions // RCS: $Revision$ $Date$ // AUTHOR: student name // INSTALLATION: MIDDLE TENNESSEE STATE UNIVERSITY // REMARKS: Illustrative "struct" example #ifndef DateType_h /* To prevent multiple inclusion problems */ #define DateType_h struct DateType { int month; int day; int year; }; void SetDate(DateType& date, int mo, int da, int yr); void PrintDate(DateType date); DateType NextDate(DateType date); #endif