diff options
author | rbuj <[email protected]> | 2021-10-27 17:30:36 +0200 |
---|---|---|
committer | lukefromdc <[email protected]> | 2024-01-08 23:02:46 -0500 |
commit | 658fab1f008bff7e1ec147d95baa04bc44c2fbcd (patch) | |
tree | 6cca2b00e83224a53df2bcca3f021c4d5c223c2a /backend/epub/minizip/ioapi.c | |
parent | ec957cf18919166ca8b8335475ef06f9fd5f2e67 (diff) | |
download | atril-658fab1f008bff7e1ec147d95baa04bc44c2fbcd.tar.bz2 atril-658fab1f008bff7e1ec147d95baa04bc44c2fbcd.tar.xz |
Use a blank line at most
Diffstat (limited to 'backend/epub/minizip/ioapi.c')
-rw-r--r-- | backend/epub/minizip/ioapi.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/backend/epub/minizip/ioapi.c b/backend/epub/minizip/ioapi.c index 7f5c191b..c20d20e3 100644 --- a/backend/epub/minizip/ioapi.c +++ b/backend/epub/minizip/ioapi.c @@ -25,7 +25,6 @@ #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin) #endif - #include "ioapi.h" voidpf call_zopen64 (const zlib_filefunc64_32_def* pfilefunc,const void*filename,int mode) @@ -82,8 +81,6 @@ void fill_zlib_filefunc64_32_def_from_filefunc32(zlib_filefunc64_32_def* p_filef p_filefunc64_32->ztell32_file = p_filefunc32->ztell_file; } - - static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode)); static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size)); static uLong ZCALLBACK fwrite_file_func OF((voidpf opaque, voidpf stream, const void* buf,uLong size)); @@ -128,7 +125,6 @@ static voidpf ZCALLBACK fopen64_file_func (voidpf opaque, const void* filename, return file; } - static uLong ZCALLBACK fread_file_func (voidpf opaque, voidpf stream, void* buf, uLong size) { uLong ret; @@ -150,7 +146,6 @@ static long ZCALLBACK ftell_file_func (voidpf opaque, voidpf stream) return ret; } - static ZPOS64_T ZCALLBACK ftell64_file_func (voidpf opaque, voidpf stream) { ZPOS64_T ret; @@ -206,7 +201,6 @@ static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T return ret; } - static int ZCALLBACK fclose_file_func (voidpf opaque, voidpf stream) { int ret; |