You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pavel Kryukov edited this page Sep 30, 2015
·
3 revisions
Introduction
This document lists conventions for various aspects of C/C++ coding in our project. In order to maintain code readable and ease writing project members should follow these propositions or add their own suggestions. What we want to achieve is a clear, simple code that should be easy to understand by all project members. Code should look familiar to those who are reading it for the first time. This can be achieved by maintaining uniform style through all of the source files.
Contents
NOTE: This lists all article, most of them are not present at the moment
File ConventionsGuidelines for file naming and internal structure
Syntax ConventionsRules for how you format the code: spaces, brackets, indentation, etc...
Statement ConventionsRules for writing statements: if, if-else, for, while, do-while, switch, etc...
Naming ConventionsGuidelines for how you name functions, types, variable, etc...