Utilities/RB_Close_File [ Functions ]

FUNCTION

Closes a given file

SOURCE

void RB_Close_File(
    FILE *arg_file )
{
    if ( arg_file != NULL )
    {
        fclose( arg_file );
    }
}