-
Notifications
You must be signed in to change notification settings - Fork 55
MTY_ListRemove
chrisd1100 edited this page Aug 25, 2022
·
1 revision
Remove a node from a list and return its item.
void *MTY_ListRemove(
MTY_List * ctx,
MTY_ListNode * node
);
ctx
(MTY_List *
)
An MTY_List
.
node
(MTY_ListNode *
)
The node in the list that should be removed.
void *
The value associated with the removed node
.