Bug 1885489 - Part 9: Add SnapshotIterator::readObject(). r=iain
[gecko.git] / docs / nspr / reference / prclist.rst
blob05dfdd5255d292adc15906703d945d10eb728a77
1 PRCList
2 =======
4 A circular linked list.
7 Syntax
8 ------
10 .. code::
12    #include <prclist.h>
14    typedef struct PRCListStr PRCList;
16    typedef struct PRCListStr {
17      PRCList *next;
18      PRCList *previous;
19    };
22 Description
23 -----------
25 PRClist defines a node in a circular linked list. It can be used as the
26 anchor of a list and can be embedded in data structures that are
27 maintained in a linked list.