static int selected()

in integration-test/custom_test_runner/custom_unity_runner.c [3:12]


static int selected( const char * filter,
                     const char * name )
{
    if( filter == 0 )
    {
        return 1;
    }

    return strstr( name, filter ) ? 1 : 0;
}