00001 /*---------------------------------------------------------------------------- 00002 * Copyright (c) 2006, Novell, Inc. 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions are 00007 * met: 00008 * 00009 * * Redistributions of source code must retain the above copyright 00010 * notice, this list of conditions and the following disclaimer. 00011 * * Redistributions in binary form must reproduce the above copyright 00012 * notice, this list of conditions and the following disclaimer in the 00013 * documentation and/or other materials provided with the distribution. 00014 * * Neither the name of the Novell nor the names of its contributors 00015 * may be used to endorse or promote products derived from this 00016 * software without specific prior written permission. 00017 * 00018 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00019 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 00020 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00021 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 00022 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00023 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00024 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00025 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00026 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00027 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00028 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00029 *--------------------------------------------------------------------------*/ 00030 00042 #include "xdasd_list.h" 00043 00053 XDLItem * xdasd_list_unlink(XDList * list, XDLItem * item) 00054 { 00055 if (item->prev) 00056 item->prev->next = item->next; 00057 if (item->next) 00058 item->next->prev = item->prev; 00059 if (item == list->head) 00060 list->head = item->next; 00061 if (item == list->tail) 00062 list->tail = item->prev; 00063 00064 --list->count; 00065 00066 return item; 00067 } 00068 00078 XDLItem * xdasd_list_link_head(XDList * list, XDLItem * item) 00079 { 00080 item->prev = 0; 00081 item->next = list->head; 00082 if (list->head) 00083 list->head->prev = item; 00084 list->head = item; 00085 if (list->tail == 0) 00086 list->tail = item; 00087 00088 ++list->count; 00089 00090 return item; 00091 } 00092 00102 XDLItem * xdasd_list_link_tail(XDList * list, XDLItem * item) 00103 { 00104 item->prev = list->tail; 00105 item->next = 0; 00106 if (list->tail) 00107 list->tail->next = item; 00108 list->tail = item; 00109 if (list->head == 0) 00110 list->head = item; 00111 00112 ++list->count; 00113 00114 return item; 00115 } 00116