mirror of
https://github.com/facebook/zstd.git
synced 2025-12-01 00:02:43 -05:00
Add the kernel wrapper API. This keeps the same API and semantics as the existing kernel API with name changes to be more kernel style and avoid symbol collisions with zstd.
20 lines
624 B
C
20 lines
624 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
/*
|
|
* This file includes every .c file needed for decompression.
|
|
* It is used by lib/decompress_unzstd.c to include the decompression
|
|
* source into the translation-unit, so it can be used for kernel
|
|
* decompression.
|
|
*/
|
|
|
|
#include "common/debug.c"
|
|
#include "common/entropy_common.c"
|
|
#include "common/error_private.c"
|
|
#include "common/fse_decompress.c"
|
|
#include "common/zstd_common.c"
|
|
#include "decompress/huf_decompress.c"
|
|
#include "decompress/zstd_ddict.c"
|
|
#include "decompress/zstd_decompress.c"
|
|
#include "decompress/zstd_decompress_block.c"
|
|
#include "zstd_decompress_module.c"
|