Source:
Recommended C Style and Coding Standards
File Organization
- file consists of various sections that should be separated by several blank lines
- although there are no limit files with more than 1000 lines are cumbersome to deal with
- lines longer than 79 columns are not handled well by all terminals and should be avoided if possible
- avoid deep indenting
File Naming Conventions
File names are made up of a base name, and an optional period and suffix.
- base name should be eight or fewer characters
- suffix should be three or fewer characters
Program Files
The suggested order of sections for a program file is as follows
- Prologue that tells what is in that file
- Description of the purpose of the objects in the files (whether they be functions, external data declarations or definitions, or something else) is more useful than a list of the object names
- may contain author(s), revision control information references, etc.
- Any header file includes
- if the include is for a non-obvious reason, the reason should be commented
- system include files like <stdio.h> before user include files
- Any defines and typedefs that apply as a whole.
- In order of
- Constant macro
- function macro
- typedefs and enums
- Global (external) data declarations
- In order of
- externs
- non-static globals
- static globals
- If a set of defines applies to a particular piece of global data (such as a flags word), the defines should be immediately after the data declaration, indented to put the defines one level deeper than the first keyword of the declaration to which they apply. (norminette not allowed)
- Functions
- should be in some meaningful order (ex. like functions should appear together)
- A “breadth-first” approach (functions on a similar level of abstraction together) is preferred over depth-first (functions defined as soon as possible before or after their calls). Considerable judgement is called for here. (your decision)
- If defining large numbers of essentially-independent utility functions, consider alphabetical order