| 199 | inline size_t LastFoundOffset() { return last_found - haystack_; } |
| 200 | |
| 201 | inline char* FindNextEndLine() |
| 202 | { |
| 203 | current = last_found + needle_len_; |
| 204 | while (current < end && |
| 205 | *current != char(13) && *current != char(10)) |
| 206 | ++current; |
| 207 | return current; |
| 208 | } |
| 209 | |
| 210 | }; //BMH_Search class |
| 211 |