TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
Subject:Results of "Includes" discussion From:Thomas Quine <thomas -dot- quine -at- NCOMPASSLABS -dot- COM> Date:Tue, 13 Oct 1998 15:58:57 -0700
Thank you for your comments about correct use of the programming jargon
term "includes". The following is a summary of the results.
-----
Use "include files" to refer to files which are to be included in a program
at compile time. These files are usually stored in a special "include
directory".
Use "include statement" to refer to the code that calls the included file.
(i.e. #include filename.ext)
To avoid confusion between the two, never use the term "includes" as a
plural noun.
Several people insisted that include files were the same as header files,
since header files are included. However, others pointed out that while
header files were certainly included, in many programming languages, other
files that were not header files might also be included. Therefore include
files are NOT equal to header files. When referring to header files, call
them "header files", not "include files".
Thanks!
- Thom