| 162 | return _getNext(delimiter, false, count); |
| 163 | } |
| 164 | char * |
| 165 | getRest() |
| 166 | { |
| 167 | // there can't be more than _length tokens, so we get the rest |
| 168 | // of the tokens by requesting _length of them |
| 169 | // |
| 170 | return _getNext(_delimiter, false, _length); |
| 171 | } |
| 172 | size_t |
| 173 | getNumTokensRemaining() |
| 174 | { |
no outgoing calls
no test coverage detected