FUNCTION c_cvtsec(tsec, hour, min, sec, fsec)
long *tsec; long *hour; long *min; long *sec; long *fsec;
The time of day in total seconds.
The hour of the day.
The minutes.
The seconds.
Fractional seconds. fsec is not used at this time.
The time of day in hours, minutes, and seconds is calculated in the following manner: The number of hours in tsec is calculated by tsec/3600. The hours are subtracted from tsec and the number of minutes is calculated by tsec/60. The minutes are subtracted from tsec and the remainder is sec.
c_cvtsec() is located in the file cvtime.c.
c_cvtsec() has no return value.