FACT++  1.0
FILE * Readline::SetStreamOut ( FILE *  f)
static

Sets rl_outstream (the stdio stream to which Readline performs output) to the new stream.

Parameters
fThe new stdio stream to which readline should perform its output
Returns
The old stream to which readline was performing output

Definition at line 721 of file Readline.cc.

Referenced by GetLine(), and RedirectionWrapper().

722 {
723  FILE *rc = rl_outstream;
724  rl_outstream = f;
725  return rc;
726 }

+ Here is the caller graph for this function: