Utilities/RB_FreeLineBuffer [ Functions ]

FUNCTION

Free the dynamically allocated line-buffer

INPUTS

SOURCE

void RB_FreeLineBuffer(
     )
{
    *line_buffer = '\0';
    free( myLine );
    myLine = NULL;
    readChars = 0;
}