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 * Revision 0.3 1997/10/15 03:05:39 crh
28 * Added some handy type casting to the macros. Added AddHere and RemThis
31 * Revision 0.2 1997/10/08 03:07:21 crh
32 * Fixed a few forgotten link-ups in Insert(), and fixed the AddHead()
33 * macro, which was passing the wrong value for <After> to Insert().
35 * Revision 0.1 1997/10/07 04:34:07 crh
39 * ========================================================================== **
43 #include "ubi_dLinkList.h"
45 /* ========================================================================== **
49 ubi_dlListPtr ubi_dlInitList( ubi_dlListPtr ListPtr )
50 /* ------------------------------------------------------------------------ **
51 * Initialize a doubly-linked list header.
53 * Input: ListPtr - A pointer to the list structure that is to be
54 * initialized for use.
56 * Output: A pointer to the initialized list header (i.e., same as
59 * ------------------------------------------------------------------------ **
66 } /* ubi_dlInitList */
68 ubi_dlNodePtr ubi_dlInsert( ubi_dlListPtr ListPtr,
71 /* ------------------------------------------------------------------------ **
72 * Insert a new node into the list.
74 * Input: ListPtr - A pointer to the list into which the node is to
76 * New - Pointer to the new node.
77 * After - NULL, or a pointer to a node that is already in the
79 * If NULL, then <New> will be added at the head of the
80 * list, else it will be added following <After>.
82 * Output: A pointer to the node that was inserted into the list (i.e.,
85 * ------------------------------------------------------------------------ **
90 New->Next = ListPtr->Head;
92 if( NULL != ListPtr->Head )
93 ListPtr->Head->Prev = New;
100 New->Next = After->Next;
102 if( NULL != After->Next )
103 After->Next->Prev = New;
114 ubi_dlNodePtr ubi_dlRemove( ubi_dlListPtr ListPtr, ubi_dlNodePtr Old )
115 /* ------------------------------------------------------------------------ **
116 * Remove a node from the list.
118 * Input: ListPtr - A pointer to the list from which <Old> is to be
120 * Old - A pointer to the node that is to be removed from the
123 * Output: A pointer to the node that was removed (i.e., <Old>).
125 * ------------------------------------------------------------------------ **
131 Old->Next->Prev = Old->Prev;
133 ListPtr->Tail = Old->Prev;
136 Old->Prev->Next = Old->Next;
138 ListPtr->Head = Old->Next;
147 /* ================================ The End ================================= */