Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

insque(3) [bsd man page]

INSQUE(3)						     Library Functions Manual							 INSQUE(3)

NAME
insque, remque - insert/remove element from a queue SYNOPSIS
struct qelem { struct qelem *q_forw; struct qelem *q_back; char q_data[]; }; insque(elem, pred) struct qelem *elem, *pred; remque(elem) struct qelem *elem; DESCRIPTION
Insque and remque manipulate queues built from doubly linked lists. Each element in the queue must in the form of ``struct qelem''. Insque inserts elem in a queue immediately after pred; remque removes an entry elem from a queue. SEE ALSO
``VAX Architecture Handbook'', pp. 228-235. 4.2 Berkeley Distribution May 20, 1986 INSQUE(3)

Check Out this Related Man Page

insque(3C)						   Standard C Library Functions 						insque(3C)

NAME
insque, remque - insert/remove element from a queue SYNOPSIS
include <search.h> void insque(struct qelem *elem, struct qelem *pred); void remque(struct qelem *elem); DESCRIPTION
The insque() and remque() functions manipulate queues built from doubly linked lists. Each element in the queue must be in the following form: struct qelem { struct qelem *q_forw; struct qelem *q_back; char q_data[]; }; The insque() function inserts elem in a queue immediately after pred. The remque() function removes an entry elem from a queue. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |Unsafe | +-----------------------------+-----------------------------+ SEE ALSO
attributes(5), standards(5) SunOS 5.11 24 Jul 2002 insque(3C)
Man Page