summaryrefslogtreecommitdiff
path: root/src/common/dllist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/dllist.c')
-rw-r--r--src/common/dllist.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/common/dllist.c b/src/common/dllist.c
index 5de3cd9..2a75768 100644
--- a/src/common/dllist.c
+++ b/src/common/dllist.c
@@ -79,27 +79,3 @@ void __dl_list_del(dl_list_item *item, dl_list_head *head)
}
}
-
-
-/******************************************************************************
-* *
-* Paramètres : item = point d'insertion. *
-* head = seconde liste à intégrer. *
-* *
-* Description : Insère une liste au sein d'une autre. *
-* *
-* Retour : - *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-void __dl_list_splice(dl_list_item *pos, dl_list_head head)
-{
- pos->next->prev = head;
- head->prev->next = pos->next;
-
- pos->next = head;
- head->prev = pos;
-
-}