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

Function printLine

examples/interfaces/10.backup.cpp:37–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35// print information, returned by isc_svc_query() call
36
37bool printLine(const unsigned char*& p)
38{
39 const ISC_USHORT length = (ISC_USHORT) isc_vax_integer((char*) p, sizeof(ISC_USHORT));
40 p += sizeof(ISC_USHORT);
41 if (length > 0)
42 printf("%*.*s\n", length, length, p);
43 p += length;
44 return length > 0;
45}
46
47bool printInfo(const unsigned char* p, size_t pSize)
48{

Callers 1

printInfoFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected