dadTimetoF
Converts a unix time_t
(format: seconds since start of 1970) to a
fortran date (format: yymmdd) / time (format: hhmmss).
f77: Call dadTimetoF( timet, dat, tim )
integer timet, dat, tim
or
C: int dadTimetoF( int timet, int *dat, int *tim);
- The variable timet contains the time/date information
in time_t format.
- The variable dat will be filled with an integer in the
form (yymmdd).
- The variable tim will be filled with an integer in the
form (hhmmss).
This page is maintained by Wolfgang Wander