PupNet.mesa
-- Gifford, July 19, 1985 9:24:55 am PDT
-- This program parses pup-network.txt, extracting host names, owners, and locations ( and other neat stuff --edt )
Donahue, May 21, 1986 11:07:35 am PDT
Ewan Tempero August 25, 1986 2:46:35 pm PDT
DIRECTORY
IO,
Rope;
PupNet: CEDAR DEFINITIONS = BEGIN
P: TYPE = PROC[name, owner, location, netAddress: Rope.ROPE, gateway, network: BOOLEAN];
ReadFile: PROC [file: Rope.ROPE, proc: P, log: IO.STREAM];
END.