| 43 | } |
| 44 | |
| 45 | void DoublyLinkedListNodeDestroy(const DoublyLinkedList *const list, |
| 46 | DoublyLinkedListNode **node) { |
| 47 | OPENER_ASSERT(list->deallocator != NULL) |
| 48 | list->deallocator(node); |
| 49 | } |
| 50 | |
| 51 | void DoublyLinkedListInsertAtHead(DoublyLinkedList *const list, |
| 52 | void *data) { |
no outgoing calls
no test coverage detected