ComputeUtils.mesa
Utility interface present on all clients and servers/controllers.
Last Edited by: Bob Hagmann, October 18, 1984 8:57:02 am PDT
Copyright © 1984 by Xerox Corporation. All rights reserved.
DIRECTORY
IO,
Rope;
ComputeUtils: CEDAR DEFINITIONS
= BEGIN
ROPE: TYPE = Rope.ROPE;
STREAM: TYPE = IO.STREAM;
threeValueLogic: TYPE = {true, false, other};
some DF file parsing utilities
SkipWhite: PROC [packageListStream: STREAM, flushLines: BOOLFALSE] RETURNS [c: CHAR];
LocalToken: PROC [packageListStream: STREAM, flushLines: BOOLFALSE] RETURNS [token: ROPE];
trueOrFalse: PROC [token: ROPE] RETURNS [tOfF: threeValueLogic] ;
END.