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

Function expr_alloc_or

scripts/config/expr.c:59–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57}
58
59struct expr *expr_alloc_or(struct expr *e1, struct expr *e2)
60{
61 if (!e1)
62 return e2;
63 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1;
64}
65
66struct expr *expr_copy(const struct expr *org)
67{

Callers 1

menu_finalizeFunction · 0.85

Calls 1

expr_alloc_twoFunction · 0.85

Tested by

no test coverage detected