Depends on D137611 Differential Revision: https://phabricator.services.mozilla.com/D137612
36 lines
456 B
ReStructuredText
36 lines
456 B
ReStructuredText
PR_APPEND_LINK
|
|
==============
|
|
|
|
Appends an element to the end of a list.
|
|
|
|
.. _Syntax:
|
|
|
|
Syntax
|
|
------
|
|
|
|
.. code:: eval
|
|
|
|
#include <prclist.h>
|
|
|
|
PR_APPEND_LINK (
|
|
PRCList *elemp,
|
|
PRCList *listp);
|
|
|
|
.. _Parameters:
|
|
|
|
Parameters
|
|
~~~~~~~~~~
|
|
|
|
``elemp``
|
|
A pointer to the element to be inserted.
|
|
``listp``
|
|
A pointer to the list.
|
|
|
|
.. _Description:
|
|
|
|
Description
|
|
-----------
|
|
|
|
PR_APPEND_LINK adds the specified element to the end of the specified
|
|
list.
|