summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2007-10-24 13:08:00 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2007-10-24 13:08:00 +0000
commitd5b02467de52b2f38845aca41242e97f263ad38c (patch)
tree241d4eb663a9c3f8f3ddc19c72734ace66fc31de
parent072a3c5017e4d97a0d8bc56b71d1a8b100784ef7 (diff)
downloadrockbox-d5b02467de52b2f38845aca41242e97f263ad38c.tar.gz
rockbox-d5b02467de52b2f38845aca41242e97f263ad38c.zip
Clarify the identifier naming rules
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15285 a1c6a512-1295-4272-9138-f99709370657
-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--------