MCPcopy Create free account
hub / github.com/boostorg/build / target_scc

Function target_scc

v2/engine/rules.c:218–230  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

216 */
217
218TARGET * target_scc( TARGET * t )
219{
220 TARGET * result = t;
221 while ( result->scc_root )
222 result = result->scc_root;
223 while ( t->scc_root )
224 {
225 TARGET * const tmp = t->scc_root;
226 t->scc_root = result;
227 t = tmp;
228 }
229 return result;
230}
231
232
233/*

Callers 4

make1aFunction · 0.85
make1cFunction · 0.85
make0rescanFunction · 0.85
make0Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected