2 .\" Copyright (c) 2002, Sun Microsystems, Inc. All Rights Reserved. Copyright 1989 AT&T Copyright (c) 1983 Regents of the University of California. All rights reserved. The Berkeley software License Agreement specifies the terms and conditions for redistribution.
3 .TH INSQUE 3C "Jul 24, 2002"
5 insque, remque \- insert/remove element from a queue
11 \fBvoid\fR \fBinsque\fR(\fBstruct qelem *\fR\fIelem\fR, \fBstruct qelem *\fR\fIpred\fR);
16 \fBvoid\fR \fBremque\fR(\fBstruct qelem *\fR\fIelem\fR);
22 The \fBinsque()\fR and \fBremque()\fR functions manipulate queues built from
23 doubly linked lists. Each element in the queue must be in the following form:
37 The \fBinsque()\fR function inserts \fIelem\fR in a queue immediately after
38 \fIpred\fR. The \fBremque()\fR function removes an entry \fIelem\fR from a
43 See \fBattributes\fR(5) for descriptions of the following attributes:
51 ATTRIBUTE TYPE ATTRIBUTE VALUE
53 Interface Stability Standard
61 \fBattributes\fR(5), \fBstandards\fR(5)