MCPcopy Create free account
hub / github.com/AngusJohnson/Clipper2 / FindNextEndLine

Method FindNextEndLine

CPP/Utils/ClipFileSave.cpp:201–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

SaveTestFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected