]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/insque.3
Automated unformatting of parentheses using unformat_parens.sh
[thirdparty/man-pages.git] / man3 / insque.3
index c3357543678d06c6abc54e1529f1ca60d0592b86..88192b45981eaad809add61fe95942f6b1e6f43b 100644 (file)
@@ -38,16 +38,16 @@ 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
+\fBinsque\fP() and \fBremque\fP() 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
+\fBinsque\fP() 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
+\fBremque\fP() removes the element pointed to by \fIelem\fP from the
 doubly-linked list.
 .SH "CONFORMING TO"
 POSIX 1003.1-2001