Create CONTRIBUTING.md

This commit is contained in:
László Monda
2017-06-16 01:01:25 +02:00
committed by GitHub
parent 7472849355
commit bfd574b3e0
+3 -1
View File
@@ -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;
``` ```