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

Function targetchain

v2/engine/rules.c:281–289  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279 */
280
281TARGETS * targetchain( TARGETS * chain, TARGETS * targets )
282{
283 if ( !targets ) return chain;
284 if ( !chain ) return targets;
285
286 chain->tail->next = targets;
287 chain->tail = targets->tail;
288 return chain;
289}
290
291/*
292 * action_free - decrement the ACTIONs refrence count and (maybe) free it.

Callers 1

make0Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected