! @return character read from the input after ignoring all 'N' entries */
| 9896 | @return character read from the input after ignoring all 'N' entries |
| 9897 | */ |
| 9898 | char_int_type get_ignore_noop() |
| 9899 | { |
| 9900 | do |
| 9901 | { |
| 9902 | get(); |
| 9903 | } while (current == 'N'); |
| 9904 | |
| 9905 | return current; |
| 9906 | } |
| 9907 | |
| 9908 | /* |
| 9909 | @brief read a number from the input |