| 65 | } |
| 66 | |
| 67 | void |
| 68 | listDoForEach(ListHead *head, ListAction act) |
| 69 | { |
| 70 | ListNode *node; |
| 71 | |
| 72 | for (node = listNodeFirst(head); node != head; node = node->next) { |
| 73 | act(node); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | void |
| 78 | listDoForEachSafe(ListHead *head, ListAction act) |
no test coverage detected