blob: 24a6dd9cfd19528d3ff3bbed984750d405183253 (
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_INSERT_LINK
==============
Inserts an element at the head of the list.
Syntax
------
.. code::
#include <prclist.h>
PR_INSERT_LINK (
PRCList *elemp,
PRCList *listp);
Parameters
~~~~~~~~~~
``elemp``
A pointer to the element to be inserted.
``listp``
A pointer to the list.
Description
-----------
PR_INSERT_LINK inserts the specified element at the head of the
specified list.
|