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

Function stuffSpb

src/common/call_service.cpp:119–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117}
118
119static void stuffSpb(char*& spb, char param, const TEXT* value)
120{
121 stuffSpbByte(spb, param);
122 int l = static_cast<int>(strlen(value));
123 fb_assert(l < 256);
124 stuffSpbByte(spb, char(l));
125 memcpy(spb, value, l);
126 spb += l;
127}
128
129static void stuffSpb2(char*& spb, char param, const TEXT* value)
130{

Callers 1

Calls 1

stuffSpbByteFunction · 0.85

Tested by

no test coverage detected