Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/boostorg/build
/ getoptval
Function
getoptval
v2/engine/option.c:87–94 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
85
*/
86
87
char * getoptval( bjam_option * optv, char opt, int subopt )
88
{
89
int i;
90
for ( i = 0; i < N_OPTS; ++i, ++optv )
91
if ( ( optv->flag == opt ) && !subopt-- )
92
return optv->val;
93
return 0;
94
}
Callers
1
main
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected