]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/uclibc/lib/contrib/uclibc/libc/misc/search/insremque.c
Inital import
[l4.git] / l4 / pkg / uclibc / lib / contrib / uclibc / libc / misc / search / insremque.c
1 /* Copyright (C) 1992, 1995, 1996 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Library General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Library General Public License for more details.
13
14    You should have received a copy of the GNU Library General Public
15    License along with the GNU C Library; see the file COPYING.LIB.  If not,
16    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17    Boston, MA 02111-1307, USA.  */
18
19 #include <features.h>
20 #include <stddef.h>
21 #include <search.h>
22
23 #ifdef L_insque
24
25 /* Insert ELEM into a doubly-linked list, after PREV.  */
26
27 void
28 insque (void *elem, void *prev)
29 {
30   struct qelem *next = ((struct qelem *) prev)->q_forw;
31   ((struct qelem *) prev)->q_forw = (struct qelem *) elem;
32   if (next != NULL)
33     next->q_back = (struct qelem *) elem;
34   ((struct qelem *) elem)->q_forw = next;
35   ((struct qelem *) elem)->q_back = (struct qelem *) prev;
36 }
37
38 #endif
39
40 #ifdef L_remque
41 /* Unlink ELEM from the doubly-linked list that it is in.  */
42
43 void
44 remque (void *elem)
45 {
46   struct qelem *next = ((struct qelem *) elem)->q_forw;
47   struct qelem *prev = ((struct qelem *) elem)->q_back;
48   if (next != NULL)
49     next->q_back = prev;
50   if (prev != NULL)
51     prev->q_forw = (struct qelem *) next;
52 }
53
54 #endif