HTML_Generator/RB_HTML_Generate_Line_Comment_End [ Functions ]

FUNCTION

Check if a line comment is active and generate ending sequence for it. Should be called at the end of each SOURCE line.

SYNOPSIS

void RB_HTML_Generate_Line_Comment_End(
    FILE *dest_doc )
{
    // Check if we are in a line comment
    if ( in_linecomment )
    {
        // and end the line comment
        in_linecomment = 0;
        RB_HTML_Color_String( dest_doc, in_linecomment, COMMENT_CLASS, "" );
    }
}