Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

PR_INSERT_AFTER

Inserts an element after another element in a circular list.

Syntax

#include <prclist.h>

PR_INSERT_AFTER (
   PRCList *elemp1
   PRCList *elemp2);

Parameters

elemp1
A pointer to the element to be inserted.
elemp2
A pointer to the element after which elemp1 is to be inserted.

Description

PR_INSERT_AFTER inserts the element specified by elemp1 into the circular list, after the element specified by elemp2.

Document Tags and Contributors

 Contributors to this page: teoli, Graememcc
 Last updated by: teoli,