Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
*/
85
void 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
adfFreeTmpVolList
Function · 0.85
adfMountHd
Function · 0.85
adfFreeDelList
Function · 0.85
adfFreeDirList
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected