.\" Copyright (c) 2001-2003 The Open Group, All Rights Reserved .TH "INSQUE" P 2003 "IEEE/The Open Group" "POSIX Programmer's Manual" .\" insque .SH NAME insque, remque \- insert or remove an element in a queue .SH SYNOPSIS .LP \fB#include .br .sp void insque(void *\fP\fIelement\fP\fB, void *\fP\fIpred\fP\fB); .br void remque(void *\fP\fIelement\fP\fB); \fP \fB .br \fP .SH DESCRIPTION .LP The \fIinsque\fP() and \fIremque\fP() functions shall manipulate queues built from doubly-linked lists. The queue can be either circular or linear. An application using \fIinsque\fP() or \fIremque\fP() shall ensure it defines a structure in which the first two members of the structure are pointers to the same type of structure, and any further members are application-specific. The first member of the structure is a forward pointer to the next entry in the queue. The second member is a backward pointer to the previous entry in the queue. If the queue is linear, the queue is terminated with null pointers. The names of the structure and of the pointer members are not subject to any special restriction. .LP The \fIinsque\fP() function shall insert the element pointed to by \fIelement\fP into a queue immediately after the element pointed to by \fIpred\fP. .LP The \fIremque\fP() function shall remove the element pointed to by \fIelement\fP from a queue. .LP If the queue is to be used as a linear list, invoking \fIinsque\fP(&\fIelement\fP, NULL), where \fIelement\fP is the initial element of the queue, shall initialize the forward and backward pointers of \fIelement\fP to null pointers. .LP If the queue is to be used as a circular list, the application shall ensure it initializes the forward pointer and the backward pointer of the initial element of the queue to the element's own address. .SH RETURN VALUE .LP The \fIinsque\fP() and \fIremque\fP() functions do not return a value. .SH ERRORS .LP No errors are defined. .LP \fIThe following sections are informative.\fP .SH EXAMPLES .SS Creating a Linear Linked List .LP The following example creates a linear linked list. .sp .RS .nf \fB#include \&... struct myque element1; struct myque element2; .sp char *data1 = "DATA1"; char *data2 = "DATA2"; \&... element1.data = data1; element2.data = data2; .sp insque (&element1, NULL); insque (&element2, &element1); \fP .fi .RE .SS Creating a Circular Linked List .LP The following example creates a circular linked list. .sp .RS .nf \fB#include \&... struct myque element1; struct myque element2; .sp char *data1 = "DATA1"; char *data2 = "DATA2"; \&... element1.data = data1; element2.data = data2; .sp element1.fwd = &element1; element1.bck = &element1; .sp insque (&element2, &element1); \fP .fi .RE .SS Removing an Element .LP The following example removes the element pointed to by \fIelement1\fP. .sp .RS .nf \fB#include \&... struct myque element1; \&... remque (&element1); \fP .fi .RE .SH APPLICATION USAGE .LP The historical implementations of these functions described the arguments as being of type \fBstruct qelem *\fP rather than as being of type \fBvoid *\fP as defined here. In those implementations, \fBstruct qelem\fP was commonly defined in \fI\fP as: .sp .RS .nf \fBstruct qelem { struct qelem *q_forw; struct qelem *q_back; }; \fP .fi .RE .LP Applications using these functions, however, were never able to use this structure directly since it provided no room for the actual data contained in the elements. Most applications defined structures that contained the two pointers as the initial elements and also provided space for, or pointers to, the object's data. Applications that used these functions to update more than one type of table also had the problem of specifying two or more different structures with the same name, if they literally used \fBstruct qelem\fP as specified. .LP As described here, the implementations were actually expecting a structure type where the first two members were forward and backward pointers to structures. With C compilers that didn't provide function prototypes, applications used structures as specified in the DESCRIPTION above and the compiler did what the application expected. .LP If this method had been carried forward with an ISO\ C standard compiler and the historical function prototype, most applications would have to be modified to cast pointers to the structures actually used to be pointers to \fBstruct qelem\fP to avoid compilation warnings. By specifying \fBvoid *\fP as the argument type, applications do not need to change (unless they specifically referenced \fBstruct qelem\fP and depended on it being defined in \fI\fP). .SH RATIONALE .LP None. .SH FUTURE DIRECTIONS .LP None. .SH SEE ALSO .LP The Base Definitions volume of IEEE\ Std\ 1003.1-2001, \fI\fP .SH COPYRIGHT Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html .