summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/33037-func_class.cpp
blob: ea271c111dd18dcfe359f9d6e33c0ce47533c039 (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
/**
 * Reverse the bytes in 32-bit chunks.
 */
void MD5::reverse_u32(UINT8 *buf, int n_u32)
{
	UINT8 tmp;
}


MD5::MD5()
{
	m_buf[0] = 0x01020304;
}

class AlignStack
{
public:
	bool m_skip_first;


	AlignStack()
	{
	}


	~AlignStack()
	{
	}


	void End()
	{
	}
};