| 288 | |
| 289 | template<typename Link> |
| 290 | Link *linked_list_append(Link *head, Link *tail) |
| 291 | { |
| 292 | while (head->next) |
| 293 | head = head->next; |
| 294 | head->next = tail; |
| 295 | tail->prev = head; |
| 296 | return tail; |
| 297 | } |
| 298 | |
| 299 | template<typename Link> |
| 300 | Link *linked_list_insert_after(Link *pos, Link *link) |
no outgoing calls
no test coverage detected