summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cpp/func_class.cpp
blob: 64a115094d748833e5351d2b36616582680694f1 (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
/**
 * 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()
   {
   }
};