I don't know if there is a consensus, but I think the cleanest way to do it would be:
- Place all declarations in header files, never in source or .c files. (I think you mean declaration when you say forward declaration.)
- Place all definitions in source files
I don't like to place declarations in files because you can have conflicting declarations without errors in C, which can cause segfaults, for example: if a.c has
int foo(char *str_one, char *str_two, char *str_three);
and b.c has
int foo(char *str_one, char *str_two);
you will not get warnings nor errors, and calls made to foo() from b.c will not place all the parameters on the stack where they should be, meaning foo() will just grab something from the stack and treat it as str_three, possibly leading to a segfault. So for me, declarations go to header files and definitions go to source files.