MCPcopy Create free account
hub / github.com/Xfennec/progress / free_hlist

Function free_hlist

hlist.c:67–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67void free_hlist(hlist *begin) {
68 hlist *tmp = begin;
69
70 while (begin) {
71 tmp = begin->next;
72 free(begin);
73 begin = tmp;
74 }
75}
76
77int get_hlist_average(hlist *begin, int size) {
78 unsigned long long avg = 0;

Callers 1

copy_and_clean_resultsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected