STPStreams.mesa
A package for producing IO streams on FTP remote files, suited for ChipNDale I/O.
written by Ch. Jacobi, January 13, 1984 10:54 am
based on module RemoteFiles written by E. McCreight, November 9, 1983 12:42 pm
Last Edited by: Jacobi, January 13, 1984 10:54 am
DIRECTORY
FS,
IO,
Rope;
STPStreams: CEDAR DEFINITIONS =
BEGIN
OpenSTP: PROC [ fileName: Rope.ROPE, accessOptions: FS.AccessOptions ← read, host: Rope.ROPENIL ] RETURNS [ self: IO.STREAM ];
END.