_NAME_ getDay1996FromSecondsSince1996 _PROTOTYPE_ int getDay1996FromSecondsSince1996(uint32 secondsSince1996); _SHORT-DESCRIPTION_ Get the day-of1996 in which secondsSince1996 occurs _DESCRIPTION_ getDay1996FromSecondsSince1996 returns the day of 1996 (a count of days since Jan 1, 1996 where day1996 = 1 on Jan 1, 1996) in which the second secondsSince1996 occurs. _SHORT-CODE-SAMPLE_ int day1996; uint32 secondsSince1996 = 54605304; _ day1996 = getDay1996FromSecondsSince1996(secondsSince1996); printf("day1996 = %d\n", day1996); _INPUT_ * An unsigned long equal to the number of seconds since 00:00:00 Jan. 1, 1996. _OUTPUT_ * An int, the day-since-1996. (Be aware that day1996 = 1 on Jan. 1, 1996.)