summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/mod_move_case_return.c
blob: 38dd6a624c900cc0c5373d3ae1347374ada58a89 (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
static int ConvertEndian(void *ptr, int bytes)
{
	switch(bytes)
	{
		case 2:
		{
			uint16_t *value = (uint16_t *) ptr;
			
			*value = bswap_16(*value);
		}
		return 1;
		case 4:
		{
			uint32_t *value = (uint32_t *) ptr;
			
			*value = bswap_32(*value);
		}
		return 1+
			2+3;

		case 8:
		{
			uint64_t *value = (uint64_t *) ptr;
			
			*value = bswap_64(*value);
		}

		return 1+

			2

			+fn(

				x
			);
		// comment
		default:
			break;
	}
	return 0;
}