1 // SPDX-License-Identifier: 0BSD 2 3 /* 4 * XZ decoder module information 5 * 6 * Author: Lasse Collin <lasse.collin@tukaani.org> 7 */ 8 9 #include <linux/module.h> 10 #include <linux/xz.h> 11 12 EXPORT_SYMBOL(xz_dec_init); 13 EXPORT_SYMBOL(xz_dec_reset); 14 EXPORT_SYMBOL(xz_dec_run); 15 EXPORT_SYMBOL(xz_dec_end); 16 17 #ifdef CONFIG_XZ_DEC_MICROLZMA 18 EXPORT_SYMBOL(xz_dec_microlzma_alloc); 19 EXPORT_SYMBOL(xz_dec_microlzma_reset); 20 EXPORT_SYMBOL(xz_dec_microlzma_run); 21 EXPORT_SYMBOL(xz_dec_microlzma_end); 22 #endif 23 24 MODULE_DESCRIPTION("XZ decompressor"); 25 MODULE_VERSION("1.2"); 26 MODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov"); 27 MODULE_LICENSE("Dual BSD/GPL"); 28
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.