Get a character, and advance in the stream. @return the next character to parse. */
| 1830 | @return the next character to parse. |
| 1831 | */ |
| 1832 | unsigned char yyGet() |
| 1833 | { |
| 1834 | char c= *m_ptr++; |
| 1835 | if (m_echo) |
| 1836 | *m_cpp_ptr++ = c; |
| 1837 | return c; |
| 1838 | } |
| 1839 | |
| 1840 | /** |
| 1841 | Get the last character accepted. |
no outgoing calls
no test coverage detected