Skip binary from the input stream. @param n number of bytes to accept. */
| 1816 | @param n number of bytes to accept. |
| 1817 | */ |
| 1818 | void skip_binary(int n) |
| 1819 | { |
| 1820 | if (m_echo) |
| 1821 | { |
| 1822 | memcpy(m_cpp_ptr, m_ptr, n); |
| 1823 | m_cpp_ptr += n; |
| 1824 | } |
| 1825 | m_ptr += n; |
| 1826 | } |
| 1827 | |
| 1828 | /** |
| 1829 | Get a character, and advance in the stream. |
no outgoing calls
no test coverage detected