1
0
Fork 0
firefox/docs/nspr/reference/pr_prev_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
474 B
ReStructuredText

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