pr_append_link.rst (406B)
1 PR_APPEND_LINK 2 ============== 3 4 Appends an element to the end of a list. 5 6 7 Syntax 8 ------ 9 10 .. code:: 11 12 #include <prclist.h> 13 14 PR_APPEND_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_APPEND_LINK adds the specified element to the end of the specified 32 list.