GCC Code Coverage Report
Directory:
csrc/
Coverage:
low: ≥ 0%
medium: ≥ 75.0%
high: ≥ 90.0%
Coverage
Exec / Excl / Total
Lines:
100.0%
2 / 0 / 2
Functions:
100.0%
1 / 0 / 1
Branches:
-%
0 / 0 / 0
List of functions
Function (File:Line)
Calls
Lines
Branches
Blocks
evutils_version (csrc/evutils.c:7)
called 1 time
100.0%
-%
100.0%
evutils.c
2 covered
0 uncovered
0 partial covered
0 excluded
Line
Branch
Exec
Source
1
#include
"evutils/evutils.h"
2
3
#ifndef EVUTILS_VERSION
4
#define EVUTILS_VERSION "0.0.1"
5
#endif
6
7
1
const
char
*
evutils_version
(
void
)
{
8
1
return
EVUTILS_VERSION
;
9
}
10
11