Analyser/Is_Empty_Line [ Functions ]

FUNCTION

Check if line is empty. This assumes that Copy_Lines_To_Item has been run on the item.

SYNOPSIS

static int Is_Empty_Line(
    char *line )

INPUTS

SOURCE

{
    line = RB_Skip_Whitespace( line );
    return ( *line == '\0' );
}