I am currently working on a project using portaudio.
To make my code a little bit more readable, I would like to isolate the callback function in another .c file.
However, when I simply put the prototype and the code of the function in one .h and one .c files and that I include my .h file, my program can't find the callback function.
How should I do this?
Thank you in advance of your answer!