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

Method stripped

src/common/Tokens.cpp:218–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

216}
217
218string Tokens::Tok::stripped() const
219{
220 string rc;
221 char q = text[0];
222
223 for (FB_SIZE_T i = 1; i < length - 1; ++i)
224 {
225 if (text[i] == q)
226 ++i;
227 rc += text[i];
228 }
229
230 return rc;
231}
232
233} // namespace Firebird

Callers 1

getTokenFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected