Directory/RB_To_Be_Skipped [ Functions ]

FUNCTION

Test if a file should not be included in the list of source files that are scanned for documentation.

This test is done based on the wildcard expressions specified in configuration.ignore_files.

SYNOPSIS

int RB_To_Be_Skipped(
    char *filename )

INPUTS

SOURCE

{
    unsigned int        i;
    int                 skip = FALSE;

    for ( i = 0; i < configuration.ignore_files.number; ++i )
    {
        if ( RB_Match( filename, configuration.ignore_files.names[i] ) )
        {
            skip = TRUE;
            break;
        }
    }
    return skip;
}