summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/c/comment_conversion_endif.c
blob: 0ceb5428ffc926041bac2b5c4ecc53bb8892d6b7 (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
#ifndef DOXYGEN_SHOULD_SKIP_THIS  /* TEST1 */

void foo()
{
	int i = 0;
}

#elif defined(sgi) && sgi /* TEST2 */

void bar()
{
	int j = 0;
}

#else /* TEST3 */

void foobar()
{
	int j = 0;
}

#endif /* END TEST */

void main();