| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #include "mul_op.h" 2 : 3 7 : int multiply_op(calctask_t *task) 4 : { 5 : /* Note that this function does not check for NULL pointers, 6 : because it is assumed that the caller has already done so. 7 : */ 8 7 : task->result = task->operand1 * task->operand2; 9 7 : return 1; 10 : } |
| Generated by: LCOV version 2.3.1-1 |