MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / skipSpaces

Function skipSpaces

src/common/TimeZoneUtil.cpp:1192–1196  ·  view source on GitHub ↗

Skip spaces and tabs.

Source from the content-addressed store, hash-verified

1190
1191// Skip spaces and tabs.
1192static void skipSpaces(const char*& p, const char* end)
1193{
1194 while (p < end && (*p == ' ' || *p == '\t'))
1195 ++p;
1196}

Callers 2

parseMethod · 0.85
parseRegionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected