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
|
||||
be chosen to be either size (much smaller than bzip2) or speed (much faster
|
||||
than bzip2).
|
||||
* @link liblrzip.h LRZIP API @endlink
|
||||
* @link Lrzip.h LRZIP API @endlink
|
||||
*/
|
||||
|
||||
/** @file liblrzip.h */
|
||||
/** @file Lrzip.h */
|
||||
|
||||
/**
|
||||
* @typedef Lrzip
|
||||
|
|
@ -35,7 +35,7 @@ libtmplrzip_la_SOURCES = \
|
|||
zpipe.h \
|
||||
lrzip_private.h \
|
||||
liblrzip_private.h \
|
||||
liblrzip.h \
|
||||
Lrzip.h \
|
||||
lrzip.c \
|
||||
lrzip.h \
|
||||
rzip.h \
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <liblrzip.h>
|
||||
#include <Lrzip.h>
|
||||
|
||||
static const char *suffix_me(const char *file)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ extern int errno;
|
|||
# include <unistd.h>
|
||||
#endif
|
||||
#include <termios.h>
|
||||
#include <liblrzip.h>
|
||||
#include <Lrzip.h>
|
||||
|
||||
#define failure(format, args...) do { \
|
||||
fprintf(stderr, format, ##args); \
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
#include <lrzip_private.h>
|
||||
#include <liblrzip.h>
|
||||
#include <Lrzip.h>
|
||||
|
||||
#define INFILE_BUCKET_SIZE 10
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue