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

Function binOut

src/burp/burp.cpp:175–189  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

173
174
175static void binOut(const void* data, unsigned len)
176{
177#ifdef WIN_NT
178 static int bin = -1;
179 if (bin == -1)
180 {
181 bin = fileno(stdout);
182 _setmode(bin, _O_BINARY);
183 }
184#else
185 const int bin = 1;
186#endif
187
188 FB_UNUSED(write(bin, data, len));
189}
190
191
192static unsigned int binIn(void* data, int len)

Callers 1

svc_api_gbakFunction · 0.85

Calls 1

filenoFunction · 0.85

Tested by

no test coverage detected