Returns the next element in a list.
#include <prclist.h> PRCList *PR_NEXT_LINK (PRCList *elemp);
elemp
A pointer to a list element.
PR_NEXT_LINK returns a pointer to the element following the specified element. It can be used to traverse a list. The following element is not removed from the list.