summaryrefslogtreecommitdiffstats
path: root/docs/nspr/reference/pr_append_link.rst
blob: 7525f348a53f12e7d9e008470c6a1cf525431fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
PR_APPEND_LINK
==============

Appends an element to the end of a list.


Syntax
------

.. code::

   #include <prclist.h>

   PR_APPEND_LINK (
     PRCList *elemp,
     PRCList *listp);


Parameters
~~~~~~~~~~

``elemp``
   A pointer to the element to be inserted.
``listp``
   A pointer to the list.


Description
-----------

PR_APPEND_LINK adds the specified element to the end of the specified
list.