MCPcopy Create free account
hub / github.com/MariaDB/server / gzprintf

Function gzprintf

zlib/gzwrite.c:487–495  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

485}
486
487int ZEXPORTVA gzprintf(gzFile file, const char *format, ...) {
488 va_list va;
489 int ret;
490
491 va_start(va, format);
492 ret = gzvprintf(file, format, va);
493 va_end(va);
494 return ret;
495}
496
497#else /* !STDC && !Z_HAVE_STDARG_H */
498

Callers

nothing calls this directly

Calls 5

gzvprintfFunction · 0.85
gz_errorFunction · 0.85
gz_initFunction · 0.85
gz_zeroFunction · 0.85
gz_vacateFunction · 0.85

Tested by

no test coverage detected