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.

PRCList

A circular linked list.

Syntax

#include <prclist.h>

typedef struct PRCListStr PRCList;

typedef struct PRCListStr {
  PRCList *next;
  PRCList *previous;
};

Description

PRClist defines a node in a circular linked list. It can be used as the anchor of a list and can be embedded in data structures that are maintained in a linked list.

Document Tags and Contributors

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