Using the examples of foo.c and foo.h I've found these guidelines helpful:
Remember that the purpose of
foo.his to facilitate the use offoo.c, so keep it as simple, organized, and self-explanatory as possible. Be liberal with comments that explain how and when to use the features offoo.c-- and when not to use them.foo.hdeclares the public features offoo.c: functions, macros, typedefs, and (shudder) global variables.foo.cshould#include "foo.h-- see discussion, and also Jonathan Leffler's comment below.If
foo.crequires additional headers for it to compile, include them infoo.c.If external headers are required or for
foo.hto compile, include them infoo.hLeverage the preprocessor to prevent
foo.hfrom being included more than once. (See below.)If for some reason an external header will be required in order for another
.cfile to use the features infoo.c, include the header infoo.hto save the next developer from unnecessary debugging. If you're averse to this, consider adding macro that will display instructions at compile-time if the required headers haven't been included.Don't include a
.cfile within another.cfile unless you have a very good reason and document it clearly.
As kgiannakakis noted, it's helpful to separate the public interface from the definitions and declarations needed only within foo.c itself. But rather than creating two files, it's sometimes better to let the preprocessor do this for you:
// foo.c
#define _foo_c_ // Tell foo.h it's being included from foo.c
#include "foo.h"
. . .
// foo.h
#if !defined(_foo_h_) // Prevent multiple inclusion
#define _foo_h_
// This section is used only internally to foo.c
#ifdef _foo_c_
. . .
#endif
// Public interface continues to end of file.
#endif // _foo_h_ // Last-ish line in foo.h
