Create CONTRIBUTING.md
This commit is contained in:
+3
-1
@@ -14,9 +14,11 @@ Extern functions and variables are written with UpperCamelCase, non-extern funct
|
|||||||
|
|
||||||
Function names are composed of a verb followed by a noun.
|
Function names are composed of a verb followed by a noun.
|
||||||
|
|
||||||
|
Non-extern functions must be declared as static.
|
||||||
|
|
||||||
```
|
```
|
||||||
DoThisExtern();
|
DoThisExtern();
|
||||||
doThisNonExtern();
|
static doThisNonExtern();
|
||||||
uint8 ExternVariable;
|
uint8 ExternVariable;
|
||||||
uint8 nonExternVariable;
|
uint8 nonExternVariable;
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user