iLLD_TC27xC  1.0
lld_codingRules_codeFormating.c
Go to the documentation of this file.
1 /*
2 * $Author: $tklose
3 * $Date: 2014-02-26 09:24:11 GMT$
4 * $Revision: $0.2
5 */
6 /**
7 
8 \page lld_codingRules_codeFormating Code formating
9  \section autoformating Auto-formating
10  Only use the code formating as defined by following script: $VERIF_LLD/bin/indent_rec
11 
12  \section ignoreautoformating Ignore auto-formating
13  In case the source code shall not be formated by the formating tool the following command can be used:
14  \code
15  // *INDENT-OFF* Note: this file was indented manually by the author.
16  ... place here code that shall not be formated by the tool
17  // *INDENT-ON*
18  \endcode
19 
20  \section fileStructure File structure
21  The source code in a file should be grouped using doxygen groups.
22  Groups should be sorted in the file by alphabetical order of the group name.
23  Inside a group, code shall be sorted by alphabetical order of the API names.
24 
25 
26 
27 [\ref lld_codingRules "Previous page"] [\ref lld_codingRules_general "Next page"]
28 
29  */