diff options
Diffstat (limited to 'PcsxSrc/Docs/CodingStyle.txt')
| -rw-r--r-- | PcsxSrc/Docs/CodingStyle.txt | 29 | 
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
 -
 | 
