lst.h revision 1.4 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
3 1.1 cgd * Copyright (c) 1988, 1989 by Adam de Boor
4 1.1 cgd * Copyright (c) 1989 by Berkeley Softworks
5 1.1 cgd * All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Adam de Boor.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.1 cgd * This product includes software developed by the University of
21 1.1 cgd * California, Berkeley and its contributors.
22 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.1 cgd * may be used to endorse or promote products derived from this software
24 1.1 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 cgd * SUCH DAMAGE.
37 1.1 cgd *
38 1.2 mycroft * from: @(#)lst.h 5.3 (Berkeley) 6/1/90
39 1.4 jtc * $Id: lst.h,v 1.4 1994/06/06 22:45:32 jtc Exp $
40 1.1 cgd */
41 1.1 cgd
42 1.1 cgd /*-
43 1.1 cgd * lst.h --
44 1.1 cgd * Header for using the list library
45 1.1 cgd */
46 1.1 cgd #ifndef _LST_H_
47 1.1 cgd #define _LST_H_
48 1.1 cgd
49 1.1 cgd #include <sprite.h>
50 1.4 jtc #include <sys/cdefs.h>
51 1.3 cgd #if __STDC__
52 1.3 cgd #include <stdlib.h>
53 1.3 cgd #endif
54 1.1 cgd
55 1.1 cgd /*
56 1.1 cgd * basic typedef. This is what the Lst_ functions handle
57 1.1 cgd */
58 1.1 cgd
59 1.1 cgd typedef struct Lst *Lst;
60 1.1 cgd typedef struct LstNode *LstNode;
61 1.1 cgd
62 1.1 cgd #define NILLST ((Lst) NIL)
63 1.1 cgd #define NILLNODE ((LstNode) NIL)
64 1.1 cgd
65 1.1 cgd /*
66 1.1 cgd * NOFREE can be used as the freeProc to Lst_Destroy when the elements are
67 1.1 cgd * not to be freed.
68 1.1 cgd * NOCOPY performs similarly when given as the copyProc to Lst_Duplicate.
69 1.1 cgd */
70 1.4 jtc #define NOFREE ((void (*) __P((ClientData))) 0)
71 1.4 jtc #define NOCOPY ((ClientData (*) __P((ClientData))) 0)
72 1.1 cgd
73 1.1 cgd #define LST_CONCNEW 0 /* create new LstNode's when using Lst_Concat */
74 1.1 cgd #define LST_CONCLINK 1 /* relink LstNode's when using Lst_Concat */
75 1.1 cgd
76 1.1 cgd /*
77 1.1 cgd * Creation/destruction functions
78 1.1 cgd */
79 1.4 jtc /* Create a new list */
80 1.4 jtc Lst Lst_Init __P((Boolean));
81 1.4 jtc /* Duplicate an existing list */
82 1.4 jtc Lst Lst_Duplicate __P((Lst, ClientData (*)(ClientData)));
83 1.4 jtc /* Destroy an old one */
84 1.4 jtc void Lst_Destroy __P((Lst, void (*)(ClientData)));
85 1.4 jtc /* True if list is empty */
86 1.4 jtc Boolean Lst_IsEmpty __P((Lst));
87 1.1 cgd
88 1.1 cgd /*
89 1.1 cgd * Functions to modify a list
90 1.1 cgd */
91 1.4 jtc /* Insert an element before another */
92 1.4 jtc ReturnStatus Lst_Insert __P((Lst, LstNode, ClientData));
93 1.4 jtc /* Insert an element after another */
94 1.4 jtc ReturnStatus Lst_Append __P((Lst, LstNode, ClientData));
95 1.4 jtc /* Place an element at the front of a lst. */
96 1.4 jtc ReturnStatus Lst_AtFront __P((Lst, ClientData));
97 1.4 jtc /* Place an element at the end of a lst. */
98 1.4 jtc ReturnStatus Lst_AtEnd __P((Lst, ClientData));
99 1.4 jtc /* Remove an element */
100 1.4 jtc ReturnStatus Lst_Remove __P((Lst, LstNode));
101 1.4 jtc /* Replace a node with a new value */
102 1.4 jtc ReturnStatus Lst_Replace __P((LstNode, ClientData));
103 1.4 jtc /* Concatenate two lists */
104 1.4 jtc ReturnStatus Lst_Concat __P((Lst, Lst, int));
105 1.1 cgd
106 1.1 cgd /*
107 1.1 cgd * Node-specific functions
108 1.1 cgd */
109 1.4 jtc /* Return first element in list */
110 1.4 jtc LstNode Lst_First __P((Lst));
111 1.4 jtc /* Return last element in list */
112 1.4 jtc LstNode Lst_Last __P((Lst));
113 1.4 jtc /* Return successor to given element */
114 1.4 jtc LstNode Lst_Succ __P((LstNode));
115 1.4 jtc /* Get datum from LstNode */
116 1.4 jtc ClientData Lst_Datum __P((LstNode));
117 1.1 cgd
118 1.1 cgd /*
119 1.1 cgd * Functions for entire lists
120 1.1 cgd */
121 1.4 jtc /* Find an element in a list */
122 1.4 jtc LstNode Lst_Find __P((Lst, ClientData,
123 1.4 jtc int (*)(ClientData, ClientData)));
124 1.4 jtc /* Find an element starting from somewhere */
125 1.4 jtc LstNode Lst_FindFrom __P((Lst, LstNode, ClientData,
126 1.4 jtc int (*cProc)(ClientData, ClientData)));
127 1.4 jtc /*
128 1.4 jtc * See if the given datum is on the list. Returns the LstNode containing
129 1.4 jtc * the datum
130 1.4 jtc */
131 1.4 jtc LstNode Lst_Member __P((Lst, ClientData));
132 1.4 jtc /* Apply a function to all elements of a lst */
133 1.4 jtc void Lst_ForEach __P((Lst, int (*)(ClientData, ClientData),
134 1.4 jtc ClientData));
135 1.4 jtc /*
136 1.4 jtc * Apply a function to all elements of a lst starting from a certain point.
137 1.4 jtc * If the list is circular, the application will wrap around to the
138 1.4 jtc * beginning of the list again.
139 1.4 jtc */
140 1.4 jtc void Lst_ForEachFrom __P((Lst, LstNode,
141 1.4 jtc int (*)(ClientData, ClientData),
142 1.4 jtc ClientData));
143 1.1 cgd /*
144 1.1 cgd * these functions are for dealing with a list as a table, of sorts.
145 1.1 cgd * An idea of the "current element" is kept and used by all the functions
146 1.1 cgd * between Lst_Open() and Lst_Close().
147 1.1 cgd */
148 1.4 jtc /* Open the list */
149 1.4 jtc ReturnStatus Lst_Open __P((Lst));
150 1.4 jtc /* Next element please */
151 1.4 jtc LstNode Lst_Next __P((Lst));
152 1.4 jtc /* Done yet? */
153 1.4 jtc Boolean Lst_IsAtEnd __P((Lst));
154 1.4 jtc /* Finish table access */
155 1.4 jtc void Lst_Close __P((Lst));
156 1.1 cgd
157 1.1 cgd /*
158 1.1 cgd * for using the list as a queue
159 1.1 cgd */
160 1.4 jtc /* Place an element at tail of queue */
161 1.4 jtc ReturnStatus Lst_EnQueue __P((Lst, ClientData));
162 1.4 jtc /* Remove an element from head of queue */
163 1.4 jtc ClientData Lst_DeQueue __P((Lst));
164 1.1 cgd
165 1.4 jtc #endif /* _LST_H_ */
166