mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
header-mangling-part-3-remove-ugly-hacks-for-liblrzi
This commit is contained in:
parent
1511c27aad
commit
99c3ea2ab9
|
|
@ -17,7 +17,7 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined(LIBLRZIP_H) && !defined(MAIN_C)
|
#ifndef LIBLRZIP_H
|
||||||
#define LIBLRZIP_H
|
#define LIBLRZIP_H
|
||||||
|
|
||||||
#define FLAG_VERBOSE (FLAG_VERBOSITY | FLAG_VERBOSITY_MAX)
|
#define FLAG_VERBOSE (FLAG_VERBOSITY | FLAG_VERBOSITY_MAX)
|
||||||
|
|
|
||||||
1
main.c
1
main.c
|
|
@ -17,7 +17,6 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
/* lrzip compression - main program */
|
/* lrzip compression - main program */
|
||||||
#define MAIN_C
|
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
|
|
|
||||||
1
runzip.c
1
runzip.c
|
|
@ -26,6 +26,7 @@
|
||||||
#include "runzip.h"
|
#include "runzip.h"
|
||||||
#include "stream.h"
|
#include "stream.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
#include "liblrzip.h"
|
||||||
|
|
||||||
static inline uchar read_u8(rzip_control *control, void *ss, int stream)
|
static inline uchar read_u8(rzip_control *control, void *ss, int stream)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
1
rzip.c
1
rzip.c
|
|
@ -27,6 +27,7 @@
|
||||||
#include "rzip.h"
|
#include "rzip.h"
|
||||||
#include "stream.h"
|
#include "stream.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
#include "liblrzip.h"
|
||||||
|
|
||||||
#define CHUNK_MULTIPLE (100 * 1024 * 1024)
|
#define CHUNK_MULTIPLE (100 * 1024 * 1024)
|
||||||
#define CKSUM_CHUNK 1024*1024
|
#define CKSUM_CHUNK 1024*1024
|
||||||
|
|
|
||||||
1
rzip.h
1
rzip.h
|
|
@ -20,7 +20,6 @@
|
||||||
#ifndef RZIP_H
|
#ifndef RZIP_H
|
||||||
#define RZIP_H
|
#define RZIP_H
|
||||||
#include "lrzip.h" /* includes config.h */
|
#include "lrzip.h" /* includes config.h */
|
||||||
#include "liblrzip.h"
|
|
||||||
#include "md5.h"
|
#include "md5.h"
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue