| Reads |
read (80, '(q,a)') DateLength, CurrentDate
read (CurrentDate(DateLength-3:DateLength), '(i)') CurrentYear
read (90, '(q,a)', end = 777, err=888) FileNameLength, FileName
read (92, '(q,a)', end=666, err=666) ModifyLength, Modify
read (Modify(Loc+4:Loc+5), '(i)') Day
read (Modify(Loc+8:Loc+11), '(i)') Year
read (Modify(Loc+7:Loc+8), '(i)') Hour
read (Modify(Loc+10:Loc+11), '(i)') Minute
read (Modify(Loc+4:Loc+5), '(i)') Day2
read (Modify(Loc+8:Loc+11), '(i)') Year2
read (Modify(Loc+7:Loc+8), '(i)') Hour2
read (Modify(Loc+10:Loc+11), '(i)') Minute2
|
| Opens |
open (unit = 80,
* access = 'sequential',
* form = 'formatted',
* status = 'old',
* name = '/infobank/tmp/date.temp')
open (unit = 90,
* access = 'sequential',
* form = 'formatted',
* status = 'old',
* name = '/infobank/tmp/allid.temp')
open (unit = 92,
* access = 'sequential',
* form = 'formatted',
* status = 'old',
* name = '/infobank/tmp/modifytime.list')
|