| Opens |
open (unit = 91,
* status = 'old',
* form = 'formatted',
* access = 'append',
* file = FileName)
open (unit = 91,
* status = 'new',
* form = 'formatted',
* access = 'sequential',
* file = FileName)
|
| Reads |
read (90, '(q,a)', end = 99)
* Length(Count),
* ALine(Count)(1:Length(Count))
read (90, '(q,a)', end = 99)
* Length(Count),
* ALine(Count)(1:Length(Count))
read (ALine(1)(1:Length(1)), '(i)') Item
read (ALine(15)(1:Length(15)), '(i)') Row
|
| Writes |
write (Archive, '(13x)')
write (FileName, 3) Item
write (91, 4) Item,
* ALine(14)(1:Length(14)),
* Row,
* ALine(8)(1:Length(8)),
* ALine(7)(1:Length(7)),
* ALine(9)(1:Length(9)),
* ALine(10)(1:Length(10)),
* Archive,
* ALine(12)(1:Length(12)),
* ALine(13)(1:Length(13)),
* ALine(16)(1:Length(16))
write (91, 40)
* ALine(8)(1:Length(8)),
* ALine(7)(1:Length(7)),
* ALine(9)(1:Length(9)),
* ALine(10)(1:Length(10)),
* Archive,
* ALine(12)(1:Length(12)),
* ALine(13)(1:Length(13)),
* ALine(16)(1:Length(16))
|