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

Sets rl_instream (the stdio stream from which Readline reads input) to the new stream.

Parameters
fThe new stdio stream from which readline should read its input
Returns
The old stream from which readline was reading it input

Definition at line 739 of file Readline.cc.

Referenced by GetLine().

740 {
741  FILE *rc = rl_instream;
742  rl_instream = f;
743  return rc;
744 }

+ Here is the caller graph for this function: