MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / freeList

Function freeList

dep/adflib/src/adf_util.c:85–93  ·  view source on GitHub ↗

* freeList * */

Source from the content-addressed store, hash-verified

83 *
84 */
85void freeList(struct List* list)
86{
87 if (list==NULL)
88 return;
89
90 if (list->next)
91 freeList(list->next);
92 free(list);
93}
94
95
96

Callers 4

adfFreeTmpVolListFunction · 0.85
adfMountHdFunction · 0.85
adfFreeDelListFunction · 0.85
adfFreeDirListFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected