Utilities/RB_Say [ Functions ]

NAME

RB_Say -- varargs

SYNOPSIS

void RB_Say(
    char *format,
    long mode,
    ... )

FUNCTION

Say what's going on. Goes to stdout.

INPUTS

AUTHOR

Koessi

SOURCE

{
    va_list             ap;

    if ( course_of_action.do_tell && debugmode & mode )
    {
        va_start( ap, mode );
        printf( "%s: ", whoami );
        vprintf( format, ap );
        va_end( ap );
    }
}