MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / SkipWhitespace

Function SkipWhitespace

rapidjson/reader.h:264–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

262*/
263template<typename InputStream>
264void SkipWhitespace(InputStream& is) {
265 internal::StreamLocalCopy<InputStream> copy(is);
266 InputStream& s(copy.s);
267
268 typename InputStream::Ch c;
269 while ((c = s.Peek()) == ' ' || c == '\n' || c == '\r' || c == '\t')
270 s.Take();
271}
272
273inline const char* SkipWhitespace(const char* p, const char* end) {
274 while (p != end && (*p == ' ' || *p == '\n' || *p == '\r' || *p == '\t'))

Callers 2

SkipWhitespace_SIMDFunction · 0.85

Calls 4

sFunction · 0.85
SkipWhitespace_SIMDFunction · 0.85
PeekMethod · 0.45
TakeMethod · 0.45

Tested by

no test coverage detected