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