Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/xz-embedded/linux/lib/xz/xz_dec_syms.c
48521 views
1
/*
2
* XZ decoder module information
3
*
4
* Author: Lasse Collin <[email protected]>
5
*
6
* This file has been put into the public domain.
7
* You can do whatever you want with this file.
8
*/
9
10
#include <linux/module.h>
11
#include <linux/xz.h>
12
13
EXPORT_SYMBOL(xz_dec_init);
14
EXPORT_SYMBOL(xz_dec_reset);
15
EXPORT_SYMBOL(xz_dec_run);
16
EXPORT_SYMBOL(xz_dec_end);
17
18
#ifdef CONFIG_XZ_DEC_MICROLZMA
19
EXPORT_SYMBOL(xz_dec_microlzma_alloc);
20
EXPORT_SYMBOL(xz_dec_microlzma_reset);
21
EXPORT_SYMBOL(xz_dec_microlzma_run);
22
EXPORT_SYMBOL(xz_dec_microlzma_end);
23
#endif
24
25
MODULE_DESCRIPTION("XZ decompressor");
26
MODULE_VERSION("1.1");
27
MODULE_AUTHOR("Lasse Collin <[email protected]> and Igor Pavlov");
28
29
/*
30
* This code is in the public domain, but in Linux it's simplest to just
31
* say it's GPL and consider the authors as the copyright holders.
32
*/
33
MODULE_LICENSE("GPL");
34
35