Expanded Description
| Topic |
Description |
| Name |
threedashes |
| Synopsis |
/infobank/programs/dbase/validator/threedashes.for |
| Description |
Subroutine to verify that three-dash files are in the proper format.
|
| Reads |
read (TempUnit, '(q,a)', end = 99)
* ALineLength, ALine(1:ALineLength)
|
| Writes |
write (Message, 25) InFile(1:InFileLength),
* RecordCount, 'must preceed dashes with a space'
write (Message, 25) InFile(1:InFileLength),
* RecordCount,
* 'must follow dashes with a space'//
* ' when dashes are followed by text'
|
| Opens |
open (unit = TempUnit,
* access = 'sequential',
* form = 'formatted',
* status = 'unknown',
* name = InFile(1:InFileLength))
|
| Calls |
call stringlen (ALine(1:ALineLength), ALineLength)
|
|