I prefer including all h-files and then all c-files in the main-file like:

Code:
#include "player.h"
#include "camera.h"
...

#include "player.c"
#include "camera.c"
...



If you do so you assure that in ALL your code files every function you declare in your h-files can be used.