bsd man page for insque

Query: insque

OS: bsd

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

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)
Related Man Pages
remque(3c) - opensolaris
insque(3) - linux
remque(3) - debian
insque(3) - suse
remque(3c) - sunos
Similar Topics in the Unix Linux Community
Need help in building gcc on solaris.