INNER CODE UNIT · C

ival

1oom-fork/1oom · src/cfg.c:72

    ival = *p ? (p + 1) : p;
    if (1
      && ctx->module && ctx->module->str
      && ctx->item && ctx->item->name
      && (strcmp(ctx->module->str, line) == 0)
      && (strcmp(ctx->item->name, iname) == 0)
    ) {
        module = ctx->module;
        item = ctx->item;
    } else {
        module = 0;
        for (const struct cfg_module_s *m = cfg_items_tbl; m->str; ++m) {
            if ((strcmp(m->str, line) == 0) && ((!m->cond) || *m->cond)) {
                module = m;
                break;
            }
        }
        if (!module) {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…