blob: 59673ba63a557773ea61a95d0e73089be518d4bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/* $NetBSD: opt_ut.c,v 1.5 2022/04/24 09:04:12 rillig Exp $ */
/*
* Tests for the options '-ut' and '-nut'.
*
* The option '-ut' uses tabs for indentation and alignment.
*
* The option '-nut' uses only spaces for indentation and alignment.
*/
//indent input
int variable;
void function_declaration(void);
void
function_definition(void)
{
int local_variable;
if (arg > 0)
function(
arg - 1
);
}
//indent end
//indent run -ut
int variable;
void function_declaration(void);
void
function_definition(void)
{
int local_variable;
if (arg > 0)
function(
arg - 1
);
}
//indent end
//indent run -nut
int variable;
void function_declaration(void);
void
function_definition(void)
{
int local_variable;
if (arg > 0)
function(
arg - 1
);
}
//indent end
|