void root()

in cli/bpfcov.c [394:411]


void root(int argc, char **argv)
{
    struct root_args this = {
        .verbosity = 0,
    };
    argp_parse(&root_argp, argc, argv, ARGP_IN_ORDER, NULL, &this);

    if (this.command)
    {
        this.command(&this);
    }
    else
    {
        log_fata(NULL, "%s\n", "not implemented yet");
        // run(&this);
        // gen(&this);
    }
}