MCPcopy Create free account
hub / github.com/LASzip/LASzip / log

Function log

example/laszippertest.cpp:245–260  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

243//---------------------------------------------------------------------------
244
245static void log(const char* format, ...)
246{
247 va_list args;
248
249 va_start(args, format);
250 vfprintf(stderr, format, args);
251 va_end(args);
252 fflush(stderr);
253
254 va_start(args, format);
255 vfprintf(settings->logfile, format, args);
256 va_end(args);
257 fflush(settings->logfile);
258
259 return;
260}
261
262//---------------------------------------------------------------------------
263

Callers 11

make_zipperFunction · 0.85
make_unzipperFunction · 0.85
write_pointsFunction · 0.85
read_pointsFunction · 0.85
write_points_seekFunction · 0.85
read_points_seekFunction · 0.85
run_testFunction · 0.85
mainFunction · 0.85
~IntegerCompressorMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected