kusano 7d535a
/*
kusano 7d535a
   LZ4 - Fast LZ compression algorithm
kusano 7d535a
   Header File
kusano 7d535a
   Copyright (C) 2011-2015, Yann Collet.
kusano 7d535a
kusano 7d535a
   BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
kusano 7d535a
kusano 7d535a
   Redistribution and use in source and binary forms, with or without
kusano 7d535a
   modification, are permitted provided that the following conditions are
kusano 7d535a
   met:
kusano 7d535a
kusano 7d535a
       * Redistributions of source code must retain the above copyright
kusano 7d535a
   notice, this list of conditions and the following disclaimer.
kusano 7d535a
       * Redistributions in binary form must reproduce the above
kusano 7d535a
   copyright notice, this list of conditions and the following disclaimer
kusano 7d535a
   in the documentation and/or other materials provided with the
kusano 7d535a
   distribution.
kusano 7d535a
kusano 7d535a
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
kusano 7d535a
   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
kusano 7d535a
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
kusano 7d535a
   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
kusano 7d535a
   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
kusano 7d535a
   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
kusano 7d535a
   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
kusano 7d535a
   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
kusano 7d535a
   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
kusano 7d535a
   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
kusano 7d535a
   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
kusano 7d535a
kusano 7d535a
   You can contact the author at :
kusano 7d535a
   - LZ4 source repository : https://github.com/Cyan4973/lz4
kusano 7d535a
   - LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
kusano 7d535a
*/
kusano 7d535a
#pragma once
kusano 7d535a
kusano 7d535a
#if defined (__cplusplus)
kusano 7d535a
extern "C" {
kusano 7d535a
#endif
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * lz4.h provides block compression functions, and gives full buffer control to programmer.
kusano 7d535a
 * If you need to generate inter-operable compressed data (respecting LZ4 frame specification),
kusano 7d535a
 * and can let the library handle its own memory, please use lz4frame.h instead.
kusano 7d535a
*/
kusano 7d535a
kusano 7d535a
/**************************************
kusano 7d535a
*  Version
kusano 7d535a
**************************************/
kusano 7d535a
#define LZ4_VERSION_MAJOR    1    /* for breaking interface changes  */
kusano 7d535a
#define LZ4_VERSION_MINOR    7    /* for new (non-breaking) interface capabilities */
kusano 7d535a
#define LZ4_VERSION_RELEASE  1    /* for tweaks, bug-fixes, or development */
kusano 7d535a
#define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE)
kusano 7d535a
int LZ4_versionNumber (void);
kusano 7d535a
kusano 7d535a
/**************************************
kusano 7d535a
*  Tuning parameter
kusano 7d535a
**************************************/
kusano 7d535a
/*
kusano 7d535a
 * LZ4_MEMORY_USAGE :
kusano 7d535a
 * Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; etc.)
kusano 7d535a
 * Increasing memory usage improves compression ratio
kusano 7d535a
 * Reduced memory usage can improve speed, due to cache effect
kusano 7d535a
 * Default value is 14, for 16KB, which nicely fits into Intel x86 L1 cache
kusano 7d535a
 */
kusano 7d535a
#define LZ4_MEMORY_USAGE 14
kusano 7d535a
kusano 7d535a
kusano 7d535a
/**************************************
kusano 7d535a
*  Simple Functions
kusano 7d535a
**************************************/
kusano 7d535a
kusano 7d535a
int LZ4_compress_default(const char* source, char* dest, int sourceSize, int maxDestSize);
kusano 7d535a
int LZ4_decompress_safe (const char* source, char* dest, int compressedSize, int maxDecompressedSize);
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
LZ4_compress_default() :
kusano 7d535a
    Compresses 'sourceSize' bytes from buffer 'source'
kusano 7d535a
    into already allocated 'dest' buffer of size 'maxDestSize'.
kusano 7d535a
    Compression is guaranteed to succeed if 'maxDestSize' >= LZ4_compressBound(sourceSize).
kusano 7d535a
    It also runs faster, so it's a recommended setting.
kusano 7d535a
    If the function cannot compress 'source' into a more limited 'dest' budget,
kusano 7d535a
    compression stops *immediately*, and the function result is zero.
kusano 7d535a
    As a consequence, 'dest' content is not valid.
kusano 7d535a
    This function never writes outside 'dest' buffer, nor read outside 'source' buffer.
kusano 7d535a
        sourceSize  : Max supported value is LZ4_MAX_INPUT_VALUE
kusano 7d535a
        maxDestSize : full or partial size of buffer 'dest' (which must be already allocated)
kusano 7d535a
        return : the number of bytes written into buffer 'dest' (necessarily <= maxOutputSize)
kusano 7d535a
              or 0 if compression fails
kusano 7d535a
kusano 7d535a
LZ4_decompress_safe() :
kusano 7d535a
    compressedSize : is the precise full size of the compressed block.
kusano 7d535a
    maxDecompressedSize : is the size of destination buffer, which must be already allocated.
kusano 7d535a
    return : the number of bytes decompressed into destination buffer (necessarily <= maxDecompressedSize)
kusano 7d535a
             If destination buffer is not large enough, decoding will stop and output an error code (<0).
kusano 7d535a
             If the source stream is detected malformed, the function will stop decoding and return a negative result.
kusano 7d535a
             This function is protected against buffer overflow exploits, including malicious data packets.
kusano 7d535a
             It never writes outside output buffer, nor reads outside input buffer.
kusano 7d535a
*/
kusano 7d535a
kusano 7d535a
kusano 7d535a
/**************************************
kusano 7d535a
*  Advanced Functions
kusano 7d535a
**************************************/
kusano 7d535a
#define LZ4_MAX_INPUT_SIZE        0x7E000000   /* 2 113 929 216 bytes */
kusano 7d535a
#define LZ4_COMPRESSBOUND(isize)  ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) + ((isize)/255) + 16)
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
LZ4_compressBound() :
kusano 7d535a
    Provides the maximum size that LZ4 compression may output in a "worst case" scenario (input data not compressible)
kusano 7d535a
    This function is primarily useful for memory allocation purposes (destination buffer size).
kusano 7d535a
    Macro LZ4_COMPRESSBOUND() is also provided for compilation-time evaluation (stack memory allocation for example).
kusano 7d535a
    Note that LZ4_compress_default() compress faster when dest buffer size is >= LZ4_compressBound(srcSize)
kusano 7d535a
        inputSize  : max supported value is LZ4_MAX_INPUT_SIZE
kusano 7d535a
        return : maximum output size in a "worst case" scenario
kusano 7d535a
              or 0, if input size is too large ( > LZ4_MAX_INPUT_SIZE)
kusano 7d535a
*/
kusano 7d535a
int LZ4_compressBound(int inputSize);
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
LZ4_compress_fast() :
kusano 7d535a
    Same as LZ4_compress_default(), but allows to select an "acceleration" factor.
kusano 7d535a
    The larger the acceleration value, the faster the algorithm, but also the lesser the compression.
kusano 7d535a
    It's a trade-off. It can be fine tuned, with each successive value providing roughly +~3% to speed.
kusano 7d535a
    An acceleration value of "1" is the same as regular LZ4_compress_default()
kusano 7d535a
    Values <= 0 will be replaced by ACCELERATION_DEFAULT (see lz4.c), which is 1.
kusano 7d535a
*/
kusano 7d535a
int LZ4_compress_fast (const char* source, char* dest, int sourceSize, int maxDestSize, int acceleration);
kusano 7d535a
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
LZ4_compress_fast_extState() :
kusano 7d535a
    Same compression function, just using an externally allocated memory space to store compression state.
kusano 7d535a
    Use LZ4_sizeofState() to know how much memory must be allocated,
kusano 7d535a
    and allocate it on 8-bytes boundaries (using malloc() typically).
kusano 7d535a
    Then, provide it as 'void* state' to compression function.
kusano 7d535a
*/
kusano 7d535a
int LZ4_sizeofState(void);
kusano 7d535a
int LZ4_compress_fast_extState (void* state, const char* source, char* dest, int inputSize, int maxDestSize, int acceleration);
kusano 7d535a
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
LZ4_compress_destSize() :
kusano 7d535a
    Reverse the logic, by compressing as much data as possible from 'source' buffer
kusano 7d535a
    into already allocated buffer 'dest' of size 'targetDestSize'.
kusano 7d535a
    This function either compresses the entire 'source' content into 'dest' if it's large enough,
kusano 7d535a
    or fill 'dest' buffer completely with as much data as possible from 'source'.
kusano 7d535a
        *sourceSizePtr : will be modified to indicate how many bytes where read from 'source' to fill 'dest'.
kusano 7d535a
                         New value is necessarily <= old value.
kusano 7d535a
        return : Nb bytes written into 'dest' (necessarily <= targetDestSize)
kusano 7d535a
              or 0 if compression fails
kusano 7d535a
*/
kusano 7d535a
int LZ4_compress_destSize (const char* source, char* dest, int* sourceSizePtr, int targetDestSize);
kusano 7d535a
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
LZ4_decompress_fast() :
kusano 7d535a
    originalSize : is the original and therefore uncompressed size
kusano 7d535a
    return : the number of bytes read from the source buffer (in other words, the compressed size)
kusano 7d535a
             If the source stream is detected malformed, the function will stop decoding and return a negative result.
kusano 7d535a
             Destination buffer must be already allocated. Its size must be a minimum of 'originalSize' bytes.
kusano 7d535a
    note : This function fully respect memory boundaries for properly formed compressed data.
kusano 7d535a
           It is a bit faster than LZ4_decompress_safe().
kusano 7d535a
           However, it does not provide any protection against intentionally modified data stream (malicious input).
kusano 7d535a
           Use this function in trusted environment only (data to decode comes from a trusted source).
kusano 7d535a
*/
kusano 7d535a
int LZ4_decompress_fast (const char* source, char* dest, int originalSize);
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
LZ4_decompress_safe_partial() :
kusano 7d535a
    This function decompress a compressed block of size 'compressedSize' at position 'source'
kusano 7d535a
    into destination buffer 'dest' of size 'maxDecompressedSize'.
kusano 7d535a
    The function tries to stop decompressing operation as soon as 'targetOutputSize' has been reached,
kusano 7d535a
    reducing decompression time.
kusano 7d535a
    return : the number of bytes decoded in the destination buffer (necessarily <= maxDecompressedSize)
kusano 7d535a
       Note : this number can be < 'targetOutputSize' should the compressed block to decode be smaller.
kusano 7d535a
             Always control how many bytes were decoded.
kusano 7d535a
             If the source stream is detected malformed, the function will stop decoding and return a negative result.
kusano 7d535a
             This function never writes outside of output buffer, and never reads outside of input buffer. It is therefore protected against malicious data packets
kusano 7d535a
*/
kusano 7d535a
int LZ4_decompress_safe_partial (const char* source, char* dest, int compressedSize, int targetOutputSize, int maxDecompressedSize);
kusano 7d535a
kusano 7d535a
kusano 7d535a
/***********************************************
kusano 7d535a
*  Streaming Compression Functions
kusano 7d535a
***********************************************/
kusano 7d535a
#define LZ4_STREAMSIZE_U64 ((1 << (LZ4_MEMORY_USAGE-3)) + 4)
kusano 7d535a
#define LZ4_STREAMSIZE     (LZ4_STREAMSIZE_U64 * sizeof(long long))
kusano 7d535a
/*
kusano 7d535a
 * LZ4_stream_t
kusano 7d535a
 * information structure to track an LZ4 stream.
kusano 7d535a
 * important : init this structure content before first use !
kusano 7d535a
 * note : only allocated directly the structure if you are statically linking LZ4
kusano 7d535a
 *        If you are using liblz4 as a DLL, please use below construction methods instead.
kusano 7d535a
 */
kusano 7d535a
typedef struct { long long table[LZ4_STREAMSIZE_U64]; } LZ4_stream_t;
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * LZ4_resetStream
kusano 7d535a
 * Use this function to init an allocated LZ4_stream_t structure
kusano 7d535a
 */
kusano 7d535a
void LZ4_resetStream (LZ4_stream_t* streamPtr);
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * LZ4_createStream will allocate and initialize an LZ4_stream_t structure
kusano 7d535a
 * LZ4_freeStream releases its memory.
kusano 7d535a
 * In the context of a DLL (liblz4), please use these methods rather than the static struct.
kusano 7d535a
 * They are more future proof, in case of a change of LZ4_stream_t size.
kusano 7d535a
 */
kusano 7d535a
LZ4_stream_t* LZ4_createStream(void);
kusano 7d535a
int           LZ4_freeStream (LZ4_stream_t* streamPtr);
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * LZ4_loadDict
kusano 7d535a
 * Use this function to load a static dictionary into LZ4_stream.
kusano 7d535a
 * Any previous data will be forgotten, only 'dictionary' will remain in memory.
kusano 7d535a
 * Loading a size of 0 is allowed.
kusano 7d535a
 * Return : dictionary size, in bytes (necessarily <= 64 KB)
kusano 7d535a
 */
kusano 7d535a
int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, int dictSize);
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * LZ4_compress_fast_continue
kusano 7d535a
 * Compress buffer content 'src', using data from previously compressed blocks as dictionary to improve compression ratio.
kusano 7d535a
 * Important : Previous data blocks are assumed to still be present and unmodified !
kusano 7d535a
 * 'dst' buffer must be already allocated.
kusano 7d535a
 * If maxDstSize >= LZ4_compressBound(srcSize), compression is guaranteed to succeed, and runs faster.
kusano 7d535a
 * If not, and if compressed data cannot fit into 'dst' buffer size, compression stops, and function returns a zero.
kusano 7d535a
 */
kusano 7d535a
int LZ4_compress_fast_continue (LZ4_stream_t* streamPtr, const char* src, char* dst, int srcSize, int maxDstSize, int acceleration);
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * LZ4_saveDict
kusano 7d535a
 * If previously compressed data block is not guaranteed to remain available at its memory location
kusano 7d535a
 * save it into a safer place (char* safeBuffer)
kusano 7d535a
 * Note : you don't need to call LZ4_loadDict() afterwards,
kusano 7d535a
 *        dictionary is immediately usable, you can therefore call LZ4_compress_fast_continue()
kusano 7d535a
 * Return : saved dictionary size in bytes (necessarily <= dictSize), or 0 if error
kusano 7d535a
 */
kusano 7d535a
int LZ4_saveDict (LZ4_stream_t* streamPtr, char* safeBuffer, int dictSize);
kusano 7d535a
kusano 7d535a
kusano 7d535a
/************************************************
kusano 7d535a
*  Streaming Decompression Functions
kusano 7d535a
************************************************/
kusano 7d535a
kusano 7d535a
#define LZ4_STREAMDECODESIZE_U64  4
kusano 7d535a
#define LZ4_STREAMDECODESIZE     (LZ4_STREAMDECODESIZE_U64 * sizeof(unsigned long long))
kusano 7d535a
typedef struct { unsigned long long table[LZ4_STREAMDECODESIZE_U64]; } LZ4_streamDecode_t;
kusano 7d535a
/*
kusano 7d535a
 * LZ4_streamDecode_t
kusano 7d535a
 * information structure to track an LZ4 stream.
kusano 7d535a
 * init this structure content using LZ4_setStreamDecode or memset() before first use !
kusano 7d535a
 *
kusano 7d535a
 * In the context of a DLL (liblz4) please prefer usage of construction methods below.
kusano 7d535a
 * They are more future proof, in case of a change of LZ4_streamDecode_t size in the future.
kusano 7d535a
 * LZ4_createStreamDecode will allocate and initialize an LZ4_streamDecode_t structure
kusano 7d535a
 * LZ4_freeStreamDecode releases its memory.
kusano 7d535a
 */
kusano 7d535a
LZ4_streamDecode_t* LZ4_createStreamDecode(void);
kusano 7d535a
int                 LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream);
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * LZ4_setStreamDecode
kusano 7d535a
 * Use this function to instruct where to find the dictionary.
kusano 7d535a
 * Setting a size of 0 is allowed (same effect as reset).
kusano 7d535a
 * Return : 1 if OK, 0 if error
kusano 7d535a
 */
kusano 7d535a
int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize);
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
*_continue() :
kusano 7d535a
    These decoding functions allow decompression of multiple blocks in "streaming" mode.
kusano 7d535a
    Previously decoded blocks *must* remain available at the memory position where they were decoded (up to 64 KB)
kusano 7d535a
    In the case of a ring buffers, decoding buffer must be either :
kusano 7d535a
    - Exactly same size as encoding buffer, with same update rule (block boundaries at same positions)
kusano 7d535a
      In which case, the decoding & encoding ring buffer can have any size, including very small ones ( < 64 KB).
kusano 7d535a
    - Larger than encoding buffer, by a minimum of maxBlockSize more bytes.
kusano 7d535a
      maxBlockSize is implementation dependent. It's the maximum size you intend to compress into a single block.
kusano 7d535a
      In which case, encoding and decoding buffers do not need to be synchronized,
kusano 7d535a
      and encoding ring buffer can have any size, including small ones ( < 64 KB).
kusano 7d535a
    - _At least_ 64 KB + 8 bytes + maxBlockSize.
kusano 7d535a
      In which case, encoding and decoding buffers do not need to be synchronized,
kusano 7d535a
      and encoding ring buffer can have any size, including larger than decoding buffer.
kusano 7d535a
    Whenever these conditions are not possible, save the last 64KB of decoded data into a safe buffer,
kusano 7d535a
    and indicate where it is saved using LZ4_setStreamDecode()
kusano 7d535a
*/
kusano 7d535a
int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* dest, int compressedSize, int maxDecompressedSize);
kusano 7d535a
int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* source, char* dest, int originalSize);
kusano 7d535a
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
Advanced decoding functions :
kusano 7d535a
*_usingDict() :
kusano 7d535a
    These decoding functions work the same as
kusano 7d535a
    a combination of LZ4_setStreamDecode() followed by LZ4_decompress_x_continue()
kusano 7d535a
    They are stand-alone. They don't need nor update an LZ4_streamDecode_t structure.
kusano 7d535a
*/
kusano 7d535a
int LZ4_decompress_safe_usingDict (const char* source, char* dest, int compressedSize, int maxDecompressedSize, const char* dictStart, int dictSize);
kusano 7d535a
int LZ4_decompress_fast_usingDict (const char* source, char* dest, int originalSize, const char* dictStart, int dictSize);
kusano 7d535a
kusano 7d535a
kusano 7d535a
kusano 7d535a
/**************************************
kusano 7d535a
*  Obsolete Functions
kusano 7d535a
**************************************/
kusano 7d535a
/* Deprecate Warnings */
kusano 7d535a
/* Should these warnings messages be a problem,
kusano 7d535a
   it is generally possible to disable them,
kusano 7d535a
   with -Wno-deprecated-declarations for gcc
kusano 7d535a
   or _CRT_SECURE_NO_WARNINGS in Visual for example.
kusano 7d535a
   You can also define LZ4_DEPRECATE_WARNING_DEFBLOCK. */
kusano 7d535a
#ifndef LZ4_DEPRECATE_WARNING_DEFBLOCK
kusano 7d535a
#  define LZ4_DEPRECATE_WARNING_DEFBLOCK
kusano 7d535a
#  define LZ4_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
kusano 7d535a
#  if (LZ4_GCC_VERSION >= 405) || defined(__clang__)
kusano 7d535a
#    define LZ4_DEPRECATED(message) __attribute__((deprecated(message)))
kusano 7d535a
#  elif (LZ4_GCC_VERSION >= 301)
kusano 7d535a
#    define LZ4_DEPRECATED(message) __attribute__((deprecated))
kusano 7d535a
#  elif defined(_MSC_VER)
kusano 7d535a
#    define LZ4_DEPRECATED(message) __declspec(deprecated(message))
kusano 7d535a
#  else
kusano 7d535a
#    pragma message("WARNING: You need to implement LZ4_DEPRECATED for this compiler")
kusano 7d535a
#    define LZ4_DEPRECATED(message)
kusano 7d535a
#  endif
kusano 7d535a
#endif /* LZ4_DEPRECATE_WARNING_DEFBLOCK */
kusano 7d535a
kusano 7d535a
/* Obsolete compression functions */
kusano 7d535a
/* These functions are planned to start generate warnings by r131 approximately */
kusano 7d535a
int LZ4_compress               (const char* source, char* dest, int sourceSize);
kusano 7d535a
int LZ4_compress_limitedOutput (const char* source, char* dest, int sourceSize, int maxOutputSize);
kusano 7d535a
int LZ4_compress_withState               (void* state, const char* source, char* dest, int inputSize);
kusano 7d535a
int LZ4_compress_limitedOutput_withState (void* state, const char* source, char* dest, int inputSize, int maxOutputSize);
kusano 7d535a
int LZ4_compress_continue                (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize);
kusano 7d535a
int LZ4_compress_limitedOutput_continue  (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize, int maxOutputSize);
kusano 7d535a
kusano 7d535a
/* Obsolete decompression functions */
kusano 7d535a
/* These function names are completely deprecated and must no longer be used.
kusano 7d535a
   They are only provided here for compatibility with older programs.
kusano 7d535a
    - LZ4_uncompress is the same as LZ4_decompress_fast
kusano 7d535a
    - LZ4_uncompress_unknownOutputSize is the same as LZ4_decompress_safe
kusano 7d535a
   These function prototypes are now disabled; uncomment them only if you really need them.
kusano 7d535a
   It is highly recommended to stop using these prototypes and migrate to maintained ones */
kusano 7d535a
/* int LZ4_uncompress (const char* source, char* dest, int outputSize); */
kusano 7d535a
/* int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize); */
kusano 7d535a
kusano 7d535a
/* Obsolete streaming functions; use new streaming interface whenever possible */
kusano 7d535a
LZ4_DEPRECATED("use LZ4_createStream() instead") void* LZ4_create (char* inputBuffer);
kusano 7d535a
LZ4_DEPRECATED("use LZ4_createStream() instead") int   LZ4_sizeofStreamState(void);
kusano 7d535a
LZ4_DEPRECATED("use LZ4_resetStream() instead")  int   LZ4_resetStreamState(void* state, char* inputBuffer);
kusano 7d535a
LZ4_DEPRECATED("use LZ4_saveDict() instead")     char* LZ4_slideInputBuffer (void* state);
kusano 7d535a
kusano 7d535a
/* Obsolete streaming decoding functions */
kusano 7d535a
LZ4_DEPRECATED("use LZ4_decompress_safe_usingDict() instead") int LZ4_decompress_safe_withPrefix64k (const char* src, char* dst, int compressedSize, int maxDstSize);
kusano 7d535a
LZ4_DEPRECATED("use LZ4_decompress_fast_usingDict() instead") int LZ4_decompress_fast_withPrefix64k (const char* src, char* dst, int originalSize);
kusano 7d535a
kusano 7d535a
kusano 7d535a
#if defined (__cplusplus)
kusano 7d535a
}
kusano 7d535a
#endif