gmtime_(stime, tarray)

Purpose

The gmtime_ subroutine converts the system time STIME into the array TARRAY. The data is stored in TARRAY in the following order:

 seconds (0 to 59)
 minutes (0 to 59)
 hours (0 to 23)
 day of the month (1 to 31)
 month of the year (0 to 11)
 year (year = current year - 1900)
 day of week (Sunday = 0)
 day of year (0 to 365)
 daylight saving time (0 or 1)

Class

Subroutine

Argument type and attributes

stime
INTEGER(KIND=TIME_SIZE), INTENT(IN)
tarray
INTEGER(4), INTENT(OUT) :: tarray(9)