mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
Rename liblrzip.h to Lrzip.h courtesy of discomfitor <mike@zentific.com>
This commit is contained in:
parent
d3b5c4e5a3
commit
55a645c451
|
|
@ -46,10 +46,10 @@ extern "C" {
|
||||||
provide, especially once the files are larger than 100MB. The advantage can
|
provide, especially once the files are larger than 100MB. The advantage can
|
||||||
be chosen to be either size (much smaller than bzip2) or speed (much faster
|
be chosen to be either size (much smaller than bzip2) or speed (much faster
|
||||||
than bzip2).
|
than bzip2).
|
||||||
* @link liblrzip.h LRZIP API @endlink
|
* @link Lrzip.h LRZIP API @endlink
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** @file liblrzip.h */
|
/** @file Lrzip.h */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef Lrzip
|
* @typedef Lrzip
|
||||||
|
|
@ -35,7 +35,7 @@ libtmplrzip_la_SOURCES = \
|
||||||
zpipe.h \
|
zpipe.h \
|
||||||
lrzip_private.h \
|
lrzip_private.h \
|
||||||
liblrzip_private.h \
|
liblrzip_private.h \
|
||||||
liblrzip.h \
|
Lrzip.h \
|
||||||
lrzip.c \
|
lrzip.c \
|
||||||
lrzip.h \
|
lrzip.h \
|
||||||
rzip.h \
|
rzip.h \
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <liblrzip.h>
|
#include <Lrzip.h>
|
||||||
|
|
||||||
static const char *suffix_me(const char *file)
|
static const char *suffix_me(const char *file)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ extern int errno;
|
||||||
# include <unistd.h>
|
# include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
#include <liblrzip.h>
|
#include <Lrzip.h>
|
||||||
|
|
||||||
#define failure(format, args...) do { \
|
#define failure(format, args...) do { \
|
||||||
fprintf(stderr, format, ##args); \
|
fprintf(stderr, format, ##args); \
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
#endif
|
#endif
|
||||||
#include <lrzip_private.h>
|
#include <lrzip_private.h>
|
||||||
#include <liblrzip.h>
|
#include <Lrzip.h>
|
||||||
|
|
||||||
#define INFILE_BUCKET_SIZE 10
|
#define INFILE_BUCKET_SIZE 10
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue