STPStreams.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
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, May 23, 1985 4:37:18 pm PDT
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.