CF_ListNode¶
Category: list
GitHub: cute_doubly_list.h
A node in a circular doubly-linked list.
Struct Members | Description |
---|---|
struct CF_ListNode* next |
Pointer to the next node in the list. |
struct CF_ListNode* prev |
Pointer to the previous node in the list. |
Remarks¶
This node is intrusive and to be placed within your struct/object definitions as a member.
Related Pages¶
cf_list_back
CF_List
CF_LIST_NODE
CF_LIST_HOST
cf_list_init_node
cf_list_init
cf_list_push_front
cf_list_push_back
cf_list_remove
cf_list_pop_front
cf_list_pop_back
cf_list_empty
cf_list_begin
cf_list_end
cf_list_front