_NAME_ getDay1996FromDate _PROTOTYPE_ int getDay1996FromDate(struct tm* date); _SHORT-DESCRIPTION_ Get the day-of-1996 from the date (date in struct tm format) _DESCRIPTION_ getDay1996FromDate returns the day-of-1996 corresponding to the date given in a struct tm format (as defined in ). _SHORT-CODE-SAMPLE_ int day1996; struct tm timeStruct; _ timeStruct.tm_year = 98; timeStruct.tm_mon = 0; timeStruct.tm_mday = 27; _ day1996 = getDay1996FromDate(&timeStruct); _ printf("year = %d\n", pTimeStruct->tm_year + 1900); printf("month = %d\n", pTimeStruct->tm_mon); /* 0 - 11 */ printf("mday = %d\n", pTimeStruct->tm_mday); /* 1 - 31 */ _ printf("day1996 = %d\n", day1996); _INPUT_ * A pointer to a tm struct (as defined in ). See code sample for fields of interest and possible values. Be aware that tm_year is the year since 1900, and most fields have a zero least value. The exception is the month-day, tm_mday. _OUTPUT_ * An int, the day-since-1996. (Be aware that day1996 = 1 on Jan. 1, 1996.)