style: Specify function definition indentation

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
This commit is contained in:
Frediano Ziglio 2016-10-11 10:27:28 +01:00
parent 5193360594
commit 1e6bdba552

View File

@ -198,7 +198,14 @@ void function(type1 arg1, type2 arg2,
type3 arg3)
----
+
* New line is acceptable only in arguments list
* New line is acceptable in arguments list and before function name, like
+
[source,c]
----
void
function(type1 arg1, type2 arg2,
type3 arg3)
----
Branching indentation
---------------------