DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
- -nbad - no blank lines after declarations
Code Block char* *foo; char* *bar; /* no blank line above */ char* *baz;
- -bap - blank line after every procedure body
Code Block int foo() { puts("Hi"); } int bar() { puts("Hello"); }
...
- -npsl - don't break procedure type
Code Block int foo(char* *s) { }
- -saf - space after each for
Code Block for (int i = 10; i > 0; --i) { // do something }
...