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

Function getStringInfo

src/common/StatementMetadata.cpp:519–524  ·  view source on GitHub ↗

Pick up a string valued info item.

Source from the content-addressed store, hash-verified

517
518// Pick up a string valued info item.
519static void getStringInfo(const UCHAR** ptr, const UCHAR* bufferEnd, string* str)
520{
521 const USHORT len = getLen(ptr, bufferEnd);
522 str->assign(*ptr, len);
523 *ptr += len;
524}
525
526
527} // namespace Firebird

Callers 1

parseMethod · 0.85

Calls 2

getLenFunction · 0.85
assignMethod · 0.45

Tested by

no test coverage detected