1 /* ========================================================================== **
4 * Copyright (C) 1997 by Christopher R. Hertel
6 * Email: crh@ubiqx.mn.org
7 * -------------------------------------------------------------------------- **
8 * This module implements simple doubly-linked lists.
9 * -------------------------------------------------------------------------- **
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Library General Public
13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Library General Public License for more details.
21 * You should have received a copy of the GNU Library General Public
22 * License along with this library; if not, write to the Free
23 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 * -------------------------------------------------------------------------- **
27 * $Log: ubi_dLinkList.c,v $
28 * Revision 1.2 1997/10/15 03:11:46 crh
29 * These are the ubiqx modules, as included with the Samba distribution.
30 * Updated the linked list module, which has new and changed macros.
32 * Revision 0.3 1997/10/15 03:05:39 crh
33 * Added some handy type casting to the macros. Added AddHere and RemThis
36 * Revision 0.2 1997/10/08 03:07:21 crh
37 * Fixed a few forgotten link-ups in Insert(), and fixed the AddHead()
38 * macro, which was passing the wrong value for <After> to Insert().
40 * Revision 0.1 1997/10/07 04:34:07 crh
44 * ========================================================================== **
47 #include "ubi_dLinkList.h"
49 /* ========================================================================== **
53 ubi_dlListPtr ubi_dlInitList( ubi_dlListPtr ListPtr )
54 /* ------------------------------------------------------------------------ **
55 * Initialize a doubly-linked list header.
57 * Input: ListPtr - A pointer to the list structure that is to be
58 * initialized for use.
60 * Output: A pointer to the initialized list header (i.e., same as
63 * ------------------------------------------------------------------------ **
70 } /* ubi_dlInitList */
72 ubi_dlNodePtr ubi_dlInsert( ubi_dlListPtr ListPtr,
75 /* ------------------------------------------------------------------------ **
76 * Insert a new node into the list.
78 * Input: ListPtr - A pointer to the list into which the node is to
80 * New - Pointer to the new node.
81 * After - NULL, or a pointer to a node that is already in the
83 * If NULL, then <New> will be added at the head of the
84 * list, else it will be added following <After>.
86 * Output: A pointer to the node that was inserted into the list (i.e.,
89 * ------------------------------------------------------------------------ **
94 New->Next = ListPtr->Head;
96 if( NULL != ListPtr->Head )
97 ListPtr->Head->Prev = New;
104 New->Next = After->Next;
106 if( NULL != After->Next )
107 After->Next->Prev = New;
118 ubi_dlNodePtr ubi_dlRemove( ubi_dlListPtr ListPtr, ubi_dlNodePtr Old )
119 /* ------------------------------------------------------------------------ **
120 * Remove a node from the list.
122 * Input: ListPtr - A pointer to the list from which <Old> is to be
124 * Old - A pointer to the node that is to be removed from the
127 * Output: A pointer to the node that was removed (i.e., <Old>).
129 * ------------------------------------------------------------------------ **
135 Old->Next->Prev = Old->Prev;
137 ListPtr->Tail = Old->Prev;
140 Old->Prev->Next = Old->Next;
142 ListPtr->Head = Old->Next;
151 /* ================================ The End ================================= */