forked from mirrors/gecko-dev
Depends on D137612 Differential Revision: https://phabricator.services.mozilla.com/D137650
29 lines
455 B
ReStructuredText
29 lines
455 B
ReStructuredText
PR_REMOVE_AND_INIT_LINK
|
|
=======================
|
|
|
|
Removes an element from a circular list and initializes the linkage.
|
|
|
|
|
|
Syntax
|
|
------
|
|
|
|
.. code:: eval
|
|
|
|
#include <prclist.h>
|
|
|
|
PR_REMOVE_AND_INIT_LINK (PRCList *elemp);
|
|
|
|
|
|
Parameter
|
|
~~~~~~~~~
|
|
|
|
``elemp``
|
|
A pointer to the element.
|
|
|
|
|
|
Description
|
|
-----------
|
|
|
|
:ref:`PR_REMOVE_AND_INIT_LINK` removes the specified element from its
|
|
circular list and initializes the links of the element to point to
|
|
itself.
|