MCPcopy Create free account
hub / github.com/bytedance/bolt / skipSpaces

Function skipSpaces

bolt/type/TimestampConversion.cpp:186–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

184 return daysSinceEpoch >= std::numeric_limits<int32_t>::min() &&
185 daysSinceEpoch <= std::numeric_limits<int32_t>::max();
186}
187
188inline void skipSpaces(const char* buf, size_t len, size_t& pos) {
189 while (pos < len && characterIsSpace(buf[pos])) {
190 pos++;
191 }
192}
193

Callers 1

Calls 1

characterIsSpaceFunction · 0.85

Tested by

no test coverage detected