Get last node.
| 50 | |
| 51 | // Get last node. |
| 52 | static inline struct list_node *list_last(const struct list_node *head) |
| 53 | { |
| 54 | return list_prev(head, head); |
| 55 | } |
| 56 | |
| 57 | // Remove list_node node from the doubly linked list it's a part of. |
| 58 | void list_remove(struct list_node *node); |