18c2ecf20Sopenharmony_ci/* 28c2ecf20Sopenharmony_ci * XZ decoder module information 38c2ecf20Sopenharmony_ci * 48c2ecf20Sopenharmony_ci * Author: Lasse Collin <lasse.collin@tukaani.org> 58c2ecf20Sopenharmony_ci * 68c2ecf20Sopenharmony_ci * This file has been put into the public domain. 78c2ecf20Sopenharmony_ci * You can do whatever you want with this file. 88c2ecf20Sopenharmony_ci */ 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_ci#include <linux/module.h> 118c2ecf20Sopenharmony_ci#include <linux/xz.h> 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_ciEXPORT_SYMBOL(xz_dec_init); 148c2ecf20Sopenharmony_ciEXPORT_SYMBOL(xz_dec_reset); 158c2ecf20Sopenharmony_ciEXPORT_SYMBOL(xz_dec_run); 168c2ecf20Sopenharmony_ciEXPORT_SYMBOL(xz_dec_end); 178c2ecf20Sopenharmony_ci 188c2ecf20Sopenharmony_ciMODULE_DESCRIPTION("XZ decompressor"); 198c2ecf20Sopenharmony_ciMODULE_VERSION("1.0"); 208c2ecf20Sopenharmony_ciMODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov"); 218c2ecf20Sopenharmony_ci 228c2ecf20Sopenharmony_ci/* 238c2ecf20Sopenharmony_ci * This code is in the public domain, but in Linux it's simplest to just 248c2ecf20Sopenharmony_ci * say it's GPL and consider the authors as the copyright holders. 258c2ecf20Sopenharmony_ci */ 268c2ecf20Sopenharmony_ciMODULE_LICENSE("GPL"); 27