summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/CONTRIBUTING6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/CONTRIBUTING b/docs/CONTRIBUTING
index d36e359719..e426770790 100644
--- a/docs/CONTRIBUTING
+++ b/docs/CONTRIBUTING
@@ -28,10 +28,12 @@ Language features
28Write normal C code. Don't redefine the language. No new types (structs are 28Write normal C code. Don't redefine the language. No new types (structs are
29structs, not typedefs), no C++isms or Javaisms. 29structs, not typedefs), no C++isms or Javaisms.
30 30
31Names 31Identifiers
32----- 32-----
33We do not want mixed case identifiers.
33Variables and function names should be all lower case. 34Variables and function names should be all lower case.
34Preprocessor symbols should be all uppercase. 35Struct and enum names should be all lower case.
36Preprocessor symbols and enum constants should be all upper case.
35 37
36Comments 38Comments
37-------- 39--------