Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
59
struct 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
66
struct expr *expr_copy(const struct expr *org)
67
{
Callers
1
menu_finalize
Function · 0.85
Calls
1
expr_alloc_two
Function · 0.85
Tested by
no test coverage detected