home

How should I format my source code?

If you don't know which religion to adopt for tabs vs spaces, indentation style and curly brace style,
you may look to the style used by compagnies publishing softwares every month since decades, or by big open source projects. See lists below.

If you work in a very large organization follow its standards.
If you don't agree with these standards think twice before to propose your standard.

If you're the only one developing/maintaining your code, do what you want!
It's a unique opportunity to learn for yourself what's good and what's bad.

If you work in a small team, avoid creating 'Yet Another Coding Standard'.
Some serious companies and open source projects, have already done the work for you. See lists below.

List of existing standards for C/C++ coding

Here is a list of documents presenting the coding standards used by famous software publishers:

The documents below deal with much more important subjects than spaces, tabs, line length and braces ....
Where possible, the link points directly to the 'source code formatting' section.

But also:

By Example

Another way is to examine the format used in real life by the main open source projects:

Many uncrustify.cfg around the Net.

Read also