1
0
Fork 0
firefox/docs/nspr/reference/pr_next_link.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

35 lines
462 B
ReStructuredText

PR_NEXT_LINK
============
Returns the next element in a list.
Syntax
------
.. code::
#include <prclist.h>
PRCList *PR_NEXT_LINK (PRCList *elemp);
Parameter
~~~~~~~~~
``elemp``
A pointer to the element.
Returns
~~~~~~~
A pointer to a list element.
Description
-----------
PR_NEXT_LINK returns a pointer to the element following the specified
element. It can be used to traverse a list. The following element is not
removed from the list.