... | @@ -5,7 +5,7 @@ The following section details the suggested coding guideline to be followed in t |
... | @@ -5,7 +5,7 @@ The following section details the suggested coding guideline to be followed in t |
|
* Use snprintf instead of sprintf.
|
|
* Use snprintf instead of sprintf.
|
|
* Avoid camel case throughout, but use small case.
|
|
* Avoid camel case throughout, but use small case.
|
|
* Improve enum readability by using stacked coding style to allow inline comments.
|
|
* Improve enum readability by using stacked coding style to allow inline comments.
|
|
* Ensure copyright header is reproduce in all files.
|
|
* Ensure copyright header is reproduced in all files.
|
|
* Ensure file-scope variables and functions are defined with static keyword.
|
|
* Ensure file-scope variables and functions are defined with static keyword.
|
|
* Reduce stack usage by avoiding defining large local variables, instead go for static variables to use data segment storage.
|
|
* Reduce stack usage by avoiding defining large local variables, instead go for static variables to use data segment storage.
|
|
* Ensure Header files have correct header guards.
|
|
* Ensure Header files have correct header guards.
|
... | | ... | |