summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/00106-bugs-6.c
blob: 302c2328ff9171f23d77777f7f225a22cdcd6ac5 (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);
}