]> granicus.if.org Git - curl/commitdiff
CODE_STYLE: mention braces for functions too
authorDaniel Stenberg <daniel@haxx.se>
Mon, 14 Mar 2016 09:36:51 +0000 (10:36 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 14 Mar 2016 09:36:51 +0000 (10:36 +0100)
docs/CODE_STYLE.md

index bcf13b46d5af67e1f784e792507c598fc99cfb16..e06b0b8ea6c529d848d4e8e820770d9382a39e54 100644 (file)
@@ -56,7 +56,7 @@ resolution screens:
    code windows next to each other on the same screen - as well as multiple
    terminal and debugging windows.
 
-## Open brace on the same line
+## Braces
 
 In if/while/do/for expressions, we write the open brace on the same line as
 the keyword and we then set the closing brace on the same indentation level as
@@ -66,6 +66,14 @@ the initial keyword. Like this:
       /* clearly a youngster */
     }
 
+When we write functions however, the opening brace should be in the first
+column of the first line:
+
+    int main(int argc, char **argv)
+    {
+      return 1;
+    }
+
 ## 'else' on the following line
 
 When adding an `else` clause to a conditional expression using braces, we add
@@ -75,7 +83,7 @@ it on a new line after the closing brace. Like this:
       /* clearly a youngster */
     }
     else {
-      /* probably intelligent */
+      /* probably grumpy */
     }
 
 ## No space before parentheses