Coding Style

From ReactOS Wiki
Revision as of 10:43, 30 April 2005 by Fireball (talk | contribs) (Proposed rules added)
Jump to: navigation, search

The ReactOS Project currently enforces very few rules for coding style.

  • {} should be on its own line
  • When hacking on existing code follow the existing style rather than reformat

Proposed rules (by Fireball, please feel free to critique them in irc or here)

  • When a line with function call is less than 80 chars long, params should be written on the same line
  • When a line with function call is more than 80 chars long (because calling func has many params), it maybe wise to write params as column, writing comments for each param (when it is needed)
  • {} must be on its own line, they must be aligned to the beginning of previous statement, statements inside {} are indented
  • Don't use {} if only one statement is enclosed in it (except when comments like //TODO or //FIXME are included also)
  • TABs should be used for indenting (using a good editor you can set TAB to any number of spaces you like - and people tend to like 2,3,4,8 - it's not possible to satisfy everyone's needs with a strict "put n spaces for indenting" rule).


Please also see Programming Guidelines section.