For an already existing file descriptor.
| 583 | { |
| 584 | // For an already existing file descriptor. |
| 585 | explicit input(int fd): rd_ch_(fd) {} |
| 586 | |
| 587 | // FILE pointer. |
| 588 | explicit input (FILE* fp):input(subprocess_fileno(fp)) { assert(fp); } |
no test coverage detected