Query: remque
OS: opensolaris
Section: 3c
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
insque(3C) Standard C Library Functions insque(3C)NAMEinsque, remque - insert/remove element from a queueSYNOPSISinclude <search.h> void insque(struct qelem *elem, struct qelem *pred); void remque(struct qelem *elem);DESCRIPTIONThe 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.ATTRIBUTESSee attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |Unsafe | +-----------------------------+-----------------------------+SEE ALSOattributes(5), standards(5) SunOS 5.11 24 Jul 2002 insque(3C)
Related Man Pages |
---|
insque(3c) - opensolaris |
remque(3c) - opensolaris |
remque(3) - debian |
remque(3) - suse |
remque(3c) - sunos |
Similar Topics in the Unix Linux Community |
---|
functions that manipulate void pointers |
search file and put into struct |
Strip xml element nodes based on conditions |