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

Function apply_modifiers

v2/engine/function.c:886–897  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

884}
885
886static LIST * apply_modifiers( STACK * s, int n )
887{
888 LIST * value = stack_top( s );
889 LIST * result = L0;
890 VAR_EDITS * const edits = (VAR_EDITS *)( (LIST * *)stack_get( s ) + 1 );
891 string buf[ 1 ];
892 string_new( buf );
893 result = apply_modifiers_impl( result, buf, edits, n, list_begin( value ),
894 list_end( value ) );
895 string_free( buf );
896 return result;
897}
898
899
900/*

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