aboutsummaryrefslogtreecommitdiffstats
path: root/man3/insque.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/insque.3')
-rw-r--r--man3/insque.311
1 files changed, 8 insertions, 3 deletions
diff --git a/man3/insque.3 b/man3/insque.3
index 9091b68666..bebfebfa99 100644
--- a/man3/insque.3
+++ b/man3/insque.3
@@ -38,17 +38,22 @@ insque, remque \- insert/remove an item from a queue
.BI "void insque(void *" elem ", void *" prev );
.BI "void remque(void *" elem );
.SH DESCRIPTION
-\fBinsque\fP() and \fBremque\fP() are functions for manipulating
+.BR insque ()
+and
+.BR remque ()
+are functions for manipulating
doubly-linked lists.
Each element in the list is a structure of
which the first two structure elements are a forward and a
backward pointer.
-\fBinsque\fP() inserts the element pointed to by \fIelem\fP
+.BR insque ()
+inserts the element pointed to by \fIelem\fP
immediately after the element pointed to by \fIprev\fP, which must
not be NULL.
-\fBremque\fP() removes the element pointed to by \fIelem\fP from the
+.BR remque ()
+removes the element pointed to by \fIelem\fP from the
doubly-linked list.
.SH "CONFORMING TO"
POSIX.1-2001