pr_insert_link.rst (413B)
1 PR_INSERT_LINK 2 ============== 3 4 Inserts an element at the head of the list. 5 6 7 Syntax 8 ------ 9 10 .. code:: 11 12 #include <prclist.h> 13 14 PR_INSERT_LINK ( 15 PRCList *elemp, 16 PRCList *listp); 17 18 19 Parameters 20 ~~~~~~~~~~ 21 22 ``elemp`` 23 A pointer to the element to be inserted. 24 ``listp`` 25 A pointer to the list. 26 27 28 Description 29 ----------- 30 31 PR_INSERT_LINK inserts the specified element at the head of the 32 specified list.