2 This file is in the public domain. */
6 @deftypefn Supplemental void insque (struct qelem *@var{elem}, struct qelem *@var{pred})
7 @deftypefnx Supplemental void remque (struct qelem *@var{elem})
9 Routines to manipulate queues built from doubly linked lists. The
10 @code{insque} routine inserts @var{elem} in the queue immediately
11 after @var{pred}. The @code{remque} routine removes @var{elem} from
12 its containing queue. These routines expect to be passed pointers to
13 structures which have as their first members a forward pointer and a
14 back pointer, like this prototype (although no prototype is provided):
40 elem
-> q_forw
= pred
-> q_forw
;
41 pred
-> q_forw
-> q_back
= elem
;
42 elem
-> q_back
= pred
;
43 pred
-> q_forw
= elem
;
51 elem
-> q_forw
-> q_back
= elem
-> q_back
;
52 elem
-> q_back
-> q_forw
= elem
-> q_forw
;