GCC Code Coverage Report
.
File: src/calc/calc.c
Date: 2025-09-16 21:43:58
Lines:
2/2
100.0%
Functions:
1/1
100.0%
Branches:
0/0
-%
List of functions
Function (Line)
Call count
Block coverage
add (line 4)
called 1 time, returned 1 time
100.0%
Line
Branch
Exec
Source
1
#include
<stdlib.h>
2
#include
"calc/calc.h"
3
4
1
extern
int
add
(
int
a
,
int
b
)
{
5
1
return
a
+
b
;
6
}
7