mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-10 17:24:29 +00:00
![Sylvestre Ledru](/assets/img/avatar_default.png)
Depends on D137612 Differential Revision: https://phabricator.services.mozilla.com/D137650
36 lines
467 B
ReStructuredText
36 lines
467 B
ReStructuredText
PR_NEXT_LINK
|
|
============
|
|
|
|
Returns the next element in a list.
|
|
|
|
|
|
Syntax
|
|
------
|
|
|
|
.. code:: eval
|
|
|
|
#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.
|