pr_insert_after.rst (529B)
1 PR_INSERT_AFTER 2 =============== 3 4 Inserts an element after another element in a circular list. 5 6 7 Syntax 8 ------ 9 10 .. code:: 11 12 #include <prclist.h> 13 14 PR_INSERT_AFTER ( 15 PRCList *elemp1 16 PRCList *elemp2); 17 18 19 Parameters 20 ~~~~~~~~~~ 21 22 ``elemp1`` 23 A pointer to the element to be inserted. 24 ``elemp2`` 25 A pointer to the element after which ``elemp1`` is to be inserted. 26 27 28 Description 29 ----------- 30 31 PR_INSERT_AFTER inserts the element specified by ``elemp1`` into the 32 circular list, after the element specified by ``elemp2``.