MCPcopy Create free account
hub / github.com/git/git / grep_not_expr

Function grep_not_expr

grep.c:575–581  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

573}
574
575static struct grep_expr *grep_not_expr(struct grep_expr *expr)
576{
577 struct grep_expr *z = xcalloc(1, sizeof(*z));
578 z->node = GREP_NODE_NOT;
579 z->u.unary = expr;
580 return z;
581}
582
583static struct grep_expr *grep_binexp(enum grep_expr_node kind,
584 struct grep_expr *left,

Callers 2

compile_pattern_notFunction · 0.85
compile_grep_patternsFunction · 0.85

Calls 1

xcallocFunction · 0.85

Tested by

no test coverage detected