break.in revision 1.2
1.Dd $Mdocdate$
2.Dt FO-BREAK 1
3.Os OpenBSD
4.Sh NAME
5.Nm Fo-break
6.Nd line breaks in function blocks
7.Sh SYNOPSIS
8.Fd using \&Fn:
9.Ft my_long_return_type *
10.Fn my_long_function "my_long_type first_argument" "my_long_type second_argument"
11.Fd using \&Fo and single-argument \&Fa:
12.Ft my_long_return_type *
13.Fo my_long_function
14.Fa "my_long_type first_argument"
15.Fa "my_long_type second_argument"
16.Fc
17.Fd using \&Fo and multi-argument \&Fa:
18.Ft my_long_return_type *
19.Fo my_long_function
20.Fa "my_long_type first_argument" "my_long_type second_argument"
21.Fc
22.Sh DESCRIPTION
23using Fn:
24.br
25.Fn my_long_function "my_long_type first_argument" "my_long_type second_argument"
26.Pp
27using Fo and single-argument Fa:
28.br
29.Fo my_long_function
30.Fa "my_long_type first_argument"
31.Fa "my_long_type second_argument"
32.Fc
33.Pp
34using Fo and multi-argument Fa:
35.br
36.Fo my_long_function
37.Fa "my_long_type first_argument" "my_long_type second_argument"
38.Fc
39