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