Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C PROGRAMMING ONLY: I need to write the function, memcheck_free, which will search through the linked list in linear order, searching for an item in
C PROGRAMMING ONLY:
I need to write the function, memcheck_free, which will search through the linked list in linear order, searching for an item in the list that matches the memory address that is being freed. If it finds the address, it should remove it from the list and actually free the memory. If it is not found it should print an error message (see below), but not free the memory.
void checked_free_fn(void *ptr, char *file, int line){ code here please }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started