1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

CODE_STYLE: mention braces for functions too

This commit is contained in:
Daniel Stenberg 2016-03-14 10:36:51 +01:00
parent 519835c4b0
commit c5c7a3e40f

View File

@ -56,7 +56,7 @@ resolution screens:
code windows next to each other on the same screen - as well as multiple code windows next to each other on the same screen - as well as multiple
terminal and debugging windows. 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 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 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 */ /* 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 ## 'else' on the following line
When adding an `else` clause to a conditional expression using braces, we add 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 */ /* clearly a youngster */
} }
else { else {
/* probably intelligent */ /* probably grumpy */
} }
## No space before parentheses ## No space before parentheses