summaryrefslogtreecommitdiff
path: root/firmware/CONTRIBUTING
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-04-11 14:32:29 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-04-11 14:32:29 +0000
commitfc357167c0a8e2f625979e74b0f3715afafa7be4 (patch)
treee692c66e769846b520f41007528960aab103451c /firmware/CONTRIBUTING
parent7e8e1005d1f72c9fd846d45742a12c5654c337a5 (diff)
downloadrockbox-fc357167c0a8e2f625979e74b0f3715afafa7be4.tar.gz
rockbox-fc357167c0a8e2f625979e74b0f3715afafa7be4.zip
First version
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@86 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/CONTRIBUTING')
-rw-r--r--firmware/CONTRIBUTING18
1 files changed, 18 insertions, 0 deletions
diff --git a/firmware/CONTRIBUTING b/firmware/CONTRIBUTING
new file mode 100644
index 0000000000..b38409ade5
--- /dev/null
+++ b/firmware/CONTRIBUTING
@@ -0,0 +1,18 @@
1$Id$
2
3In order for the project to run as smoothly as possible, it's best if all
4contributors adhere to a few simple conventions:
5
6- Write all code in C. Sometimes assembly is faster, but C is always more
7 readable and maintainable.
8
9- Write C code. Don't redefine the language. No new types, no C++isms or
10 Javaisms.
11
12- Variables and function names should be all lower case.
13 Preprocessor symbols should be all uppercase.
14
15- Use the brace placement style of your choice, but indent your code with
16 four spaces. Don't use TAB characters, as that will mess up code display in
17 CVS, printing, and a zillion other places.
18