diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 13:36:22 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 13:36:22 +0000 |
commit | 01298f3142627495db94d24bdb314052b12ed110 (patch) | |
tree | ded298850a7794d445cc5b4f32d665ba558422d7 /lzlib.h | |
parent | Adding debian version 0.5-3. (diff) | |
download | lzlib-01298f3142627495db94d24bdb314052b12ed110.tar.xz lzlib-01298f3142627495db94d24bdb314052b12ed110.zip |
Merging upstream version 0.6.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'lzlib.h')
-rw-r--r-- | lzlib.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -29,7 +29,7 @@ extern "C" { #endif -const char * const LZ_version_string = "0.5"; +const char * const LZ_version_string = "0.6"; enum { min_dictionary_bits = 12, min_dictionary_size = 1 << min_dictionary_bits, @@ -54,7 +54,7 @@ int LZ_compress_sync_flush( void * const encoder ); int LZ_compress_read( void * const encoder, uint8_t * const buffer, const int size ); -int LZ_compress_write( void * const encoder, uint8_t * const buffer, +int LZ_compress_write( void * const encoder, const uint8_t * const buffer, const int size ); int LZ_compress_write_size( void * const encoder ); @@ -74,7 +74,7 @@ int LZ_decompress_finish( void * const decoder ); int LZ_decompress_read( void * const decoder, uint8_t * const buffer, const int size ); -int LZ_decompress_write( void * const decoder, uint8_t * const buffer, +int LZ_decompress_write( void * const decoder, const uint8_t * const buffer, const int size ); enum LZ_errno LZ_decompress_errno( void * const decoder ); |