Files
tubestation/docs/nspr/reference/prclist.rst
2022-02-02 17:19:51 +00:00

28 lines
412 B
ReStructuredText

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