summaryrefslogtreecommitdiff
path: root/PcsxSrc/Docs/CodingStyle.txt
diff options
context:
space:
mode:
authorpixel <pixel>2004-12-21 16:02:11 +0000
committerpixel <pixel>2004-12-21 16:02:11 +0000
commitd5022a82eb21beb49034b94f84c5d6f466562d5e (patch)
treed6e90756feb8b896c7f9ed546726e93c1f8f8ab3 /PcsxSrc/Docs/CodingStyle.txt
parent2f6ab3ff3c8696b872bce292ffffbd8179c0506a (diff)
Removing PCSX from PSX-Bundle (I now have true cvs access on sourceforge! Yay!)
Diffstat (limited to 'PcsxSrc/Docs/CodingStyle.txt')
-rw-r--r--PcsxSrc/Docs/CodingStyle.txt29
1 files changed, 0 insertions, 29 deletions
diff --git a/PcsxSrc/Docs/CodingStyle.txt b/PcsxSrc/Docs/CodingStyle.txt
deleted file mode 100644
index 4b44c97..0000000
--- a/PcsxSrc/Docs/CodingStyle.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-## PCSX CODING STYLE
-
-typedef struct { // { within struct
- int i;
-} name;
-
-void func(int i) { // { within func declaration
- if () { // same
- switch () { // same
- default:
- printf(); // 1 tab per level (considering the default and the code in it
- // as diferent ones
- }
- }
-
- for (;;) { // same for while
- }
-}
-
-Also try to align the code:
- Something = x;
- AnotherThing = x;
-but not always:
- i = x;
- Something = x;
-
-tab = 4
-indent = 4
-