30 #define FASTLZ_VERSION 0x000100 32 #define FASTLZ_VERSION_MAJOR 0 33 #define FASTLZ_VERSION_MINOR 0 34 #define FASTLZ_VERSION_REVISION 0 36 #define FASTLZ_VERSION_STRING "0.1.0" 38 #if defined (__cplusplus) 96 #if defined (__cplusplus) int fastlz_compress_level(int level, const void *input, int length, void *output)
Compress a block of data in the input buffer and returns the size of compressed block.
Definition: fastlz.c:155
int fastlz_compress(const void *input, int length, void *output)
Compress a block of data in the input buffer and returns the size of compressed block.
Definition: fastlz.c:131
int fastlz_decompress(const void *input, int length, void *output, int maxout)
Decompress a block of compressed data and returns the size of the decompressed block.
Definition: fastlz.c:141