1
0
Fork 0
firefox/docs/nspr/reference/prclist.rst
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

27 lines
407 B
ReStructuredText

PRCList
=======
A circular linked list.
Syntax
------
.. code::
#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.