Accept a character, by advancing the input stream. */
| 1879 | Accept a character, by advancing the input stream. |
| 1880 | */ |
| 1881 | void yySkip() |
| 1882 | { |
| 1883 | if (m_echo) |
| 1884 | *m_cpp_ptr++ = *m_ptr++; |
| 1885 | else |
| 1886 | m_ptr++; |
| 1887 | } |
| 1888 | |
| 1889 | /** |
| 1890 | Accept multiple characters at once. |
no outgoing calls
no test coverage detected