How to structure #includes in C - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T21:14:53Z http://stackoverflow.com/feeds/question/276386 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/276386/how-to-structure-includes-in-c 4 How to structure #includes in C Paggas 2008-11-09T19:58:29Z 2009-08-28T08:50:54Z <p>Say I have a C program which is broken to a set of *.c and *.h files. If code from one file uses functions from another file, where should I include the header file? Inside the *.c file that used the function, or inside the header of that file?</p> <p>E.g. file <code>foo.c</code> includes <code>foo.h</code>, which contains all declarations for <code>foo.c</code>; same for <code>bar.c</code> and <code>bar.h</code>. Function <code>foo1()</code> inside <code>foo.c</code> calls <code>bar1()</code>, which is declared in <code>bar.h</code> and defined in <code>bar.c</code>. Now the question is, should I include <code>bar.h</code> inside <code>foo.h</code>, or inside <code>foo.c</code>?</p> <p>What would be a good set of rules-of-thumb for such issues?</p> http://stackoverflow.com/questions/276386/how-to-structure-includes-in-c/276391#276391 2 Answer by mipadi for How to structure #includes in C mipadi 2008-11-09T20:02:55Z 2008-11-09T20:02:55Z <p>I include the most minimal set of headers possible in the <code>.h</code> file, and include the rest in the <code>.c</code> file. This has the benefit of sometimes reducing compilation times. Given your example, if <code>foo.h</code> doesn't really need <code>bar.h</code> but includes it anyway, and some other file includes <code>foo.h</code>, then that file will be recompiled if <code>bar.h</code> changes, even though it may not actually need or use <code>bar.h</code>.</p> http://stackoverflow.com/questions/276386/how-to-structure-includes-in-c/276392#276392 3 Answer by tvanfosson for How to structure #includes in C tvanfosson 2008-11-09T20:03:28Z 2008-11-09T20:03:28Z <p>I would only include header files in a *.h file that required for the header file itself. Header files that are needed for a source file, in my opinion, should be included in the source file so that the dependencies are obvious from the source. Header files should be be built to handle multiple inclusion so you could put it in both if required for clarity.</p> http://stackoverflow.com/questions/276386/how-to-structure-includes-in-c/276406#276406 4 Answer by kgiannakakis for How to structure #includes in C kgiannakakis 2008-11-09T20:10:50Z 2008-11-10T06:46:30Z <p>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:</p> <ul> <li>Add include definitions in the c files - this way the file dependencies are more obvious when reading the code.</li> <li>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.</li> <li>Avoid cross references, i.e. foo references bar and bar references foo. This may cause linking problems and is also a sign of bad design</li> </ul> http://stackoverflow.com/questions/276386/how-to-structure-includes-in-c/276438#276438 1 Answer by chrisharris. for How to structure #includes in C chrisharris. 2008-11-09T20:27:51Z 2008-11-09T21:12:26Z <p>The .h file should define the public interface (aka the api) to the functions in the .c file.</p> <p>If the interface of file1 uses the interface of file2 then #include file2.h in file1.h</p> <p>If the implementation in file1.c makes use of stuff in file2.c then file1.c should #include file2.h.</p> <p>I must admit though that - because I always #include file1.h in file1.c - I normally wouldn't bother #including file2.h directly in file1.c if it was already #included in file1.h</p> <p>If you ever find yourself in the situation where two .c files #include each others .h files then it is a sign that modularity has broken down and you ought to think about restructuring things a bit.</p> http://stackoverflow.com/questions/276386/how-to-structure-includes-in-c/276573#276573 2 Answer by Adam Liss for How to structure #includes in C Adam Liss 2008-11-09T22:21:55Z 2009-08-28T08:50:54Z <p>Using the examples of <code>foo.c</code> and <code>foo.h</code> I've found these guidelines helpful:</p> <ul> <li><p>Remember that the purpose of <code>foo.h</code> is to facilitate the use of <code>foo.c</code>, so keep it as simple, organized, and self-explanatory as possible. Be liberal with comments that explain <em>how</em> and <em>when</em> to use the features of <code>foo.c</code> -- and when <em>not</em> to use them.</p></li> <li><p><code>foo.h</code> declares the public features of <code>foo.c</code>: functions, macros, typedefs, and (<em>shudder</em>) global variables.</p></li> <li><p><code>foo.c</code> should <code>#include "foo.h</code> -- see discussion, and also Jonathan Leffler's comment below.</p></li> <li><p>If <code>foo.c</code> requires additional headers for it to compile, include them in <code>foo.c</code>.</p></li> <li><p>If external headers are required for <code>foo.h</code> to compile, include them in <code>foo.h</code></p></li> <li><p>Leverage the preprocessor to prevent <code>foo.h</code> from being included more than once. (See below.)</p></li> <li><p>If for some reason an external header will be required in order for another <code>.c</code> file to use the features in <code>foo.c</code>, include the header in <code>foo.h</code> to 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.</p></li> <li><p><em>Don't</em> include a <code>.c</code> file within another <code>.c</code> file unless you have a <em>very</em> good reason and document it clearly.</p></li> </ul> <p>As kgiannakakis noted, it's helpful to separate the public interface from the definitions and declarations needed only within <code>foo.c</code> itself. But rather than creating two files, it's sometimes better to let the preprocessor do this for you:</p> <pre><code>// foo.c #define _foo_c_ // Tell foo.h it's being included from foo.c #include "foo.h" . . . </code></pre> <p>&nbsp;</p> <pre><code>// 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 </code></pre> http://stackoverflow.com/questions/276386/how-to-structure-includes-in-c/276588#276588 1 Answer by Jonathan Leffler for How to structure #includes in C Jonathan Leffler 2008-11-09T22:32:02Z 2008-11-09T22:32:02Z <p>As others have noted, a header foo.h should declare the information necessary to be able to use the facilities provided by a source file foo.c. This would include the types, enumerations and functions provided by foo.c. (You don't use global variables, do you? If you do, then those are declared in foo.h too.)</p> <p>The header foo.h should be self-contained and idempotent. Self-contained means that any user can include foo.h and not need to worry about which other headers may be needed (because foo.h includes those headers). Idempotent means that if the header is included more than once, there is no damage done. That is achieved by the classic technique:</p> <pre><code> #ifndef FOO_H_INCLUDED #define FOO_H_INCLUDED ...rest of the contents of foo.h... #endif /* FOO_H_INCLUDED */ </code></pre> <p>The question asked:</p> <p><em>File foo.c includes foo.h, which contains all declarations for foo.c; same for bar.c and bar.h. Function foo1() inside foo.c calls bar1(), which is declared in bar.h and defined in bar.c. Now the question is, should I include bar.h inside foo.h, or inside foo.c?</em></p> <p>It will depend on whether the services provided by foo.h depend on bar.h or not. If other files using foo.h will need one of the types or enumerations defined by bar.h in order to use the functionality of foo.h, then foo.h should ensure that bar.h is included (by including it). However, if the services of bar.h are only used in foo.c and are not needed by those who use foo.h, then foo.h should not include bar.h</p>