-
Notifications
You must be signed in to change notification settings - Fork 1
CodingStyle
Pavel Kryukov edited this page Sep 30, 2015
·
3 revisions
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.
NOTE: This lists all article, most of them are not present at the moment
- File Conventions Guidelines for file naming and internal structure
- Syntax Conventions Rules for how you format the code: spaces, brackets, indentation, etc...
- Statement Conventions Rules for writing statements: if, if-else, for, while, do-while, switch, etc...
- Naming Conventions Guidelines for how you name functions, types, variable, etc...
- Commenting Suggestions Guidelines for writing comments
- Programming Practices Some common programming practices