You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
366 B
20 lines
366 B
4 years ago
|
/*=-------------------------------------------------------------------------=*\
|
||
|
*
|
||
|
| 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);
|
||
|
}
|
||
|
|