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

Function printLine

examples/interfaces/09.service.cpp:38–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

printInfoFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected