Function call |
LRM §10.3.3. |
A function call calls a function which returns a value.
function_name (expression, ...);
A function call calls a function which returns a value for use in an expression.
Functions must have at least one input argument, so function calls always have at least one expression.
Byte = ReverseBits(Byte);