MCPcopy Create free account
hub / github.com/HexHive/NASS / VPrintf

Function VPrintf

fuzz/libfuzzer/FuzzerIO.cpp:167–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

165}
166
167void VPrintf(bool Verbose, const char *Fmt, ...) {
168 if (!Verbose) return;
169 va_list ap;
170 va_start(ap, Fmt);
171 vfprintf(OutputFile, Fmt, ap);
172 va_end(ap);
173 fflush(OutputFile);
174}
175
176static bool MkDirRecursiveInner(const std::string &Leaf) {
177 // Prevent chance of potential infinite recursion

Callers 1

CrashResistantMergeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected