* Is the list empty? */
| 579 | * Is the list empty? |
| 580 | */ |
| 581 | static inline bool |
| 582 | slist_is_empty(slist_head *head) |
| 583 | { |
| 584 | slist_check(head); |
| 585 | |
| 586 | return head->head.next == NULL; |
| 587 | } |
| 588 | |
| 589 | /* |
| 590 | * Insert a node at the beginning of the list. |
no test coverage detected