Analyser/RB_GetCurrentFile [ Functions ]

NAME

Get a copy of the name of the current file. Allocates memory.

SOURCE

char               *RB_GetCurrentFile(
    void )
{
    if ( current_file )
    {
        return RB_StrDup( current_file );
    }
    else
    {
        return NULL;
    }
}