MCPcopy Create free account
hub / github.com/Entware/Entware / expr_alloc_and

Function expr_alloc_and

scripts/config/expr.c:52–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50}
51
52struct expr *expr_alloc_and(struct expr *e1, struct expr *e2)
53{
54 if (!e1)
55 return e2;
56 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1;
57}
58
59struct expr *expr_alloc_or(struct expr *e1, struct expr *e2)
60{

Callers 5

rewrite_mFunction · 0.85
menu_add_depFunction · 0.85
menu_add_promptFunction · 0.85
menu_add_visibilityFunction · 0.85
menu_finalizeFunction · 0.85

Calls 1

expr_alloc_twoFunction · 0.85

Tested by

no test coverage detected