prclist.rst (407B)
1 PRCList 2 ======= 3 4 A circular linked list. 5 6 7 Syntax 8 ------ 9 10 .. code:: 11 12 #include <prclist.h> 13 14 typedef struct PRCListStr PRCList; 15 16 typedef struct PRCListStr { 17 PRCList *next; 18 PRCList *previous; 19 }; 20 21 22 Description 23 ----------- 24 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.