write multiple characters
| 27 | |
| 28 | // write multiple characters |
| 29 | std::streamsize fdoutbuf::xsputn(const char* s, std::streamsize num) |
| 30 | { |
| 31 | return writeall(m_fd, s, num); |
| 32 | } |
| 33 | |
| 34 | int fdoutbuf::getfd() |
| 35 | { |
nothing calls this directly
no test coverage detected