MintList.mesa
Copyright Ó 1987 by Xerox Corporation. All rights reserved.
Christian Le Cocq August 28, 1987 1:02:55 pm PDT
DIRECTORY
Mint;
MintList: CEDAR DEFINITIONS
~ BEGIN
IsNodeInList: PROC [node: Mint.Node, nodeList: Mint.NodeList] RETURNS [found: BOOLEANFALSE];
AppendNodeLists: PROC [top, bottom: Mint.NodeList] RETURNS [nodeList: Mint.NodeList ← NIL];
AppendFetLists: PROC [top, bottom: Mint.FetList] RETURNS [fetList: Mint.FetList ← NIL];
END.