1FO-BREAK(1) - General Commands Manual
2
3# NAME
4
5**Fo-break** - line breaks in function blocks
6
7# SYNOPSIS
8
9**using Fn:**
10
11*my\_long\_return\_type \*‌*  
12**my\_long\_function**(*my\_long\_type first\_argument*, *my\_long\_type second\_argument*);
13
14*void*  
15**this function name is so ridiculously long that it will not fit on the line**(*my\_long\_type first\_argument*, *my\_long\_type second\_argument*, *my\_long\_type third\_argument*);
16
17**using Fo and single-argument Fa:**
18
19*my\_long\_return\_type \*‌*  
20**my\_long\_function**(*my\_long\_type first\_argument*,
21*my\_long\_type second\_argument*);
22
23*void*  
24**this function name is so ridiculously long that it will not fit on the line**(*my\_long\_type first\_argument*,
25*my\_long\_type second\_argument*,
26*my\_long\_type third\_argument*);
27
28**using Fo and multi-argument Fa:**
29
30*my\_long\_return\_type \*‌*  
31**my\_long\_function**(*my\_long\_type first\_argument*, *my\_long\_type second\_argument*);
32
33# DESCRIPTION
34
35using Fn:  
36**my\_long\_function**(*my\_long\_type first\_argument*, *my\_long\_type second\_argument*)
37
38using Fo and single-argument Fa:  
39**my\_long\_function**(*my\_long\_type first\_argument*,
40*my\_long\_type second\_argument*)
41
42using Fo and multi-argument Fa:  
43**my\_long\_function**(*my\_long\_type first\_argument*, *my\_long\_type second\_argument*)
44
45OpenBSD - July 4, 2017
46