`man cfree` leads me to believe that cfree() is not a thing.
Cat's Eye Technologies
11 years ago
69 | 69 | {printf("Internal error - delete_list; argument must be LIST\n");exit(1);} |
70 | 70 | lst = (struct s_list *) s_content_value(*cnt); |
71 | 71 | list_mem -= sizeof(*lst) +lst->size*sizeof(struct s_content); |
72 | cfree(lst->array); | |
73 | cfree(lst); | |
72 | free(lst->array); | |
73 | free(lst); | |
74 | 74 | cnt->tag=0; |
75 | 75 | s_content_value(*cnt)=0; |
76 | 76 | } |