Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.12 21 lines 532 B view raw
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * linux/lib/zlib_deflate/deflate_syms.c 4 * 5 * Exported symbols for the deflate functionality. 6 * 7 */ 8 9#include <linux/module.h> 10#include <linux/init.h> 11 12#include <linux/zlib.h> 13 14EXPORT_SYMBOL(zlib_deflate_workspacesize); 15EXPORT_SYMBOL(zlib_deflate_dfltcc_enabled); 16EXPORT_SYMBOL(zlib_deflate); 17EXPORT_SYMBOL(zlib_deflateInit2); 18EXPORT_SYMBOL(zlib_deflateEnd); 19EXPORT_SYMBOL(zlib_deflateReset); 20MODULE_DESCRIPTION("Data compression using the deflation algorithm"); 21MODULE_LICENSE("GPL");