Path: blob/main/sys/contrib/xz-embedded/linux/lib/xz/xz_dec_syms.c
48521 views
/*1* XZ decoder module information2*3* Author: Lasse Collin <[email protected]>4*5* This file has been put into the public domain.6* You can do whatever you want with this file.7*/89#include <linux/module.h>10#include <linux/xz.h>1112EXPORT_SYMBOL(xz_dec_init);13EXPORT_SYMBOL(xz_dec_reset);14EXPORT_SYMBOL(xz_dec_run);15EXPORT_SYMBOL(xz_dec_end);1617#ifdef CONFIG_XZ_DEC_MICROLZMA18EXPORT_SYMBOL(xz_dec_microlzma_alloc);19EXPORT_SYMBOL(xz_dec_microlzma_reset);20EXPORT_SYMBOL(xz_dec_microlzma_run);21EXPORT_SYMBOL(xz_dec_microlzma_end);22#endif2324MODULE_DESCRIPTION("XZ decompressor");25MODULE_VERSION("1.1");26MODULE_AUTHOR("Lasse Collin <[email protected]> and Igor Pavlov");2728/*29* This code is in the public domain, but in Linux it's simplest to just30* say it's GPL and consider the authors as the copyright holders.31*/32MODULE_LICENSE("GPL");333435