Expanded description
| Topic |
Description |
| Name |
loader |
| Synopsis |
/infobank2/programs/html/projlist/loader.for |
| Description |
(none) |
| Opens |
open (unit = 90,
* form = 'formatted',
* status = 'old',
* access = 'sequential',
* name = '/infobank/programs/keep/clint.proj.list')
open (unit = 91,
* form = 'formatted',
* status = 'old',
* access = 'sequential',
* name = OutName(1:OutLength))
|
| Reads |
read (90, '(q,a)', end = 99)
* ALineLength, ALine(1:ALineLength)
|
| Writes |
write (LastID, '(7x)')
write (OutName, '(1024x)')
write (91, '(a,t10,a)')
* ALine(1:Tab-1), ALine(Tab+1:ALineLength)
|
| Calls |
call stringlen (ALine(1:Tab-1), IDLength)
call stringlen (ALine(Tab+1:ALineLength), OrgLength)
call stringlen (OutName, OutLength)
call changecase ('SMALLS', OutName(1:OutLength))
|
|