MCPcopy Create free account
hub / github.com/F-Stack/f-stack / FIO_decompressFilename

Function FIO_decompressFilename

freebsd/contrib/zstd/programs/fileio.c:2586–2596  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2584
2585
2586int FIO_decompressFilename(FIO_ctx_t* const fCtx, FIO_prefs_t* const prefs,
2587 const char* dstFileName, const char* srcFileName,
2588 const char* dictFileName)
2589{
2590 dRess_t const ress = FIO_createDResources(prefs, dictFileName);
2591
2592 int const decodingError = FIO_decompressSrcFile(fCtx, prefs, ress, dstFileName, srcFileName);
2593
2594 FIO_freeDResources(ress);
2595 return decodingError;
2596}
2597
2598static const char *suffixList[] = {
2599 ZSTD_EXTENSION,

Callers 1

mainFunction · 0.85

Calls 3

FIO_createDResourcesFunction · 0.85
FIO_decompressSrcFileFunction · 0.85
FIO_freeDResourcesFunction · 0.85

Tested by

no test coverage detected