lcov2 0.1.0

Enhanced tools for working with LCOV format and generating HTML
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
extern int x(int);

int main() {
    int a = 0;

    a += 1;

    a = x(a);

    if (a == 15) {
        printf("%s\n", "hello");
    } else {
        printf("no\n");
    }
}