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

Function apply_modifiers

src/engine/function.c:845–856  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

843}
844
845static LIST * apply_modifiers( STACK * s, int n )
846{
847 LIST * value = stack_top( s );
848 LIST * result = L0;
849 VAR_EDITS * const edits = (VAR_EDITS *)( (LIST * *)stack_get( s ) + 1 );
850 string buf[ 1 ];
851 string_new( buf );
852 result = apply_modifiers_impl( result, buf, edits, n, list_begin( value ),
853 list_end( value ) );
854 string_free( buf );
855 return result;
856}
857
858
859/*

Callers 1

function_runFunction · 0.85

Calls 7

stack_topFunction · 0.85
stack_getFunction · 0.85
string_newFunction · 0.85
apply_modifiers_implFunction · 0.85
list_beginFunction · 0.85
list_endFunction · 0.85
string_freeFunction · 0.85

Tested by

no test coverage detected