MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / listDoForEach

Function listDoForEach

src/library/common/list.c:67–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67void
68listDoForEach(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
77void
78listDoForEachSafe(ListHead *head, ListAction act)

Callers 1

printMemLeaksInfoFunction · 0.85

Calls 1

listNodeFirstFunction · 0.85

Tested by

no test coverage detected