OSDN Git Service

Replace FSF snail mail address with URLs
[uclinux-h8/uClibc.git] / 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    see <http://www.gnu.org/licenses/>.  */
17
18 #include <features.h>
19 #include <stddef.h>
20 #include <search.h>
21
22 #ifdef L_insque
23
24 /* Insert ELEM into a doubly-linked list, after PREV.  */
25
26 void
27 insque (void *elem, void *prev)
28 {
29   struct qelem *next = ((struct qelem *) prev)->q_forw;
30   ((struct qelem *) prev)->q_forw = (struct qelem *) elem;
31   if (next != NULL)
32     next->q_back = (struct qelem *) elem;
33   ((struct qelem *) elem)->q_forw = next;
34   ((struct qelem *) elem)->q_back = (struct qelem *) prev;
35 }
36
37 #endif
38
39 #ifdef L_remque
40 /* Unlink ELEM from the doubly-linked list that it is in.  */
41
42 void
43 remque (void *elem)
44 {
45   struct qelem *next = ((struct qelem *) elem)->q_forw;
46   struct qelem *prev = ((struct qelem *) elem)->q_back;
47   if (next != NULL)
48     next->q_back = prev;
49   if (prev != NULL)
50     prev->q_forw = (struct qelem *) next;
51 }
52
53 #endif