1
0
Fork 0
firefox/docs/nspr/reference/pr_insert_after.rst
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

32 lines
529 B
ReStructuredText

PR_INSERT_AFTER
===============
Inserts an element after another element in a circular list.
Syntax
------
.. code::
#include <prclist.h>
PR_INSERT_AFTER (
PRCList *elemp1
PRCList *elemp2);
Parameters
~~~~~~~~~~
``elemp1``
A pointer to the element to be inserted.
``elemp2``
A pointer to the element after which ``elemp1`` is to be inserted.
Description
-----------
PR_INSERT_AFTER inserts the element specified by ``elemp1`` into the
circular list, after the element specified by ``elemp2``.