You should include foo.h inside foo.c. This way other c files that include foo.h won't carry bar.h unnecessarily. This is my advice for including header files:
- Add include definitions in the c files - this way the file dependencies are more obvious when reading the code.
- Split the foo.h in two separate files, say foo_int.h and foo.h. The first one carries the type and forward declarations needed only by foo.c. The foo.h includes the functions and types needed by external modules. This is something like the private and public section of foo.
- Avoid cross references, i.e. foo references bar and bar references foo. This may cause compiling linking problems and is also a sign of bad design
