Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtappbuilder / src / libAButil / util_ds.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23
24 /*
25  *      $XConsortium: util_ds.h /main/4 1995/11/06 18:53:31 rswiston $
26  *
27  * @(#)util_ds.h        1.1 19 Feb 1994      cde_app_builder/src/libAButil
28  *
29  *      RESTRICTED CONFIDENTIAL INFORMATION:
30  *
31  *      The information in this document is subject to special
32  *      restrictions in a confidential disclosure agreement between
33  *      HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
34  *      document outside HP, IBM, Sun, USL, SCO, or Univel without
35  *      Sun's specific written approval.  This document and all copies
36  *      and derivative works thereof must be returned or destroyed at
37  *      Sun's request.
38  *
39  *      Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
40  *
41  */
42
43 #ifndef _UTIL_DS_H_
44 #define _UTIL_DS_H_
45 /*
46  * util_ds.h - LList and ASet ADTs
47  */
48 #include <X11/Intrinsic.h>
49
50 typedef struct  _LListStruct    *LList;
51 typedef void    (*LListIterFn)(void *cl_data);
52
53 #define ASet            LList
54 #define ASetIterFn      LListIterFn
55
56 \f
57 /*******************************
58  * LList and ASet ADT operations
59  *******************************/
60
61 extern LList    util_llist_create(
62                     void
63                 );
64 extern void     util_llist_destroy(
65                     LList       llist
66                 );
67 extern void     util_llist_insert_after(
68                     LList       llist,
69                     void        *cl_data
70                 );
71 extern LList    util_llist_find(
72                     LList       llist,
73                     void        *cl_data
74                 );
75 extern void     util_llist_delete(
76                     LList       llist,
77                     void        *cl_data
78                 );
79 extern void     util_llist_iterate(
80                     LList       llist,
81                     LListIterFn fn
82                 );
83
84 #define util_aset_create        util_llist_create
85 #define util_aset_destroy       util_llist_destroy
86 #define util_aset_iterate       util_llist_iterate
87 #define util_aset_remove        util_llist_delete
88
89 extern void     util_aset_add(
90                     ASet        aset,
91                     void        *cl_data
92                 );
93
94 #endif /* _UTIL_DS_H_ */