Inserts an element after another element in a circular list.
#include <prclist.h> PR_INSERT_AFTER ( PRCList *elemp1 PRCList *elemp2);
elemp1
elemp2
elemp1
is to be inserted.PR_INSERT_AFTER inserts the element specified by elemp1
into the circular list, after the element specified by elemp2
.