-
Notifications
You must be signed in to change notification settings - Fork 55
MTY_ListNode
chrisd1100 edited this page Aug 25, 2022
·
1 revision
Node in a linked list.
typedef struct {
struct MTY_ListNode * prev;
struct MTY_ListNode * next;
void * value;
} MTY_ListNode;
prev
(struct MTY_ListNode *
)
The previous node in the list.
next
(struct MTY_ListNode *
)
The next node in the list.
value
(void *
)
The value associated with the node.