003 File Manager
Current Path:
/usr/src/sys/contrib/xz-embedded/linux/lib/xz
usr
/
src
/
sys
/
contrib
/
xz-embedded
/
linux
/
lib
/
xz
/
📁
..
📄
Kconfig
(1.23 KB)
📄
Makefile
(178 B)
📄
xz_crc32.c
(1.23 KB)
📄
xz_crc64.c
(923 B)
📄
xz_dec_bcj.c
(13.58 KB)
📄
xz_dec_lzma2.c
(28.39 KB)
📄
xz_dec_stream.c
(20.03 KB)
📄
xz_dec_syms.c
(664 B)
📄
xz_dec_test.c
(5.15 KB)
📄
xz_lzma2.h
(5.97 KB)
📄
xz_private.h
(4.47 KB)
📄
xz_stream.h
(1.43 KB)
Editing: xz_dec_syms.c
/* * XZ decoder module information * * Author: Lasse Collin <lasse.collin@tukaani.org> * * This file has been put into the public domain. * You can do whatever you want with this file. */ #include <linux/module.h> #include <linux/xz.h> EXPORT_SYMBOL(xz_dec_init); EXPORT_SYMBOL(xz_dec_reset); EXPORT_SYMBOL(xz_dec_run); EXPORT_SYMBOL(xz_dec_end); MODULE_DESCRIPTION("XZ decompressor"); MODULE_VERSION("1.0"); MODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov"); /* * This code is in the public domain, but in Linux it's simplest to just * say it's GPL and consider the authors as the copyright holders. */ MODULE_LICENSE("GPL");
Upload File
Create Folder