I am developing a project in C, and I need to free the allocated memory and also close all the open files before it exits.
I decided to implement a clean
function that will do all this stuff and call it with atexit
because there are a lot of possible exit scenarios.
The problem is that atexit
doesn't allow me to set functions with parameters, so I can't send to clean
the pointers that need to be freed in the end of the process.
So I need to declare as global variables every pointer that may need to be freed, and every file that may remaining open in the program? (I already did that but doesn't looks good) or does exist a similar function to atexit
that allows to send parameters? or more probably there is another way that I am missing?