summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/bugs-6.c
blob: 99ebbddab64d8d41a182b3699b9c1d86662ff589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*=-------------------------------------------------------------------------=*\
*
|  FUNCTION NAME: mult2
|
|  DESCRIPTION:
|     Multiplies a number by two.
|
|  INPUTS/OUTPUTS:
|     val - the number to double
|
|  RETURNS:
|     val * 2
*
\*=-------------------------------------------------------------------------=*/
int mult2(int val)
{
   return val * 2;
}