diff options
author | Alexander Mohr <alexander.m.mohr@mercedes-benz.com> | 2022-07-05 18:52:50 (GMT) |
---|---|---|
committer | Alexander Mohr <alexander.m.mohr@mercedes-benz.com> | 2022-07-05 19:14:34 (GMT) |
commit | 0ac3c74de1b6de584c361f3e9485dde35f10c756 (patch) | |
tree | 24ad2216f485618fb07a09fd4e1c67bf352dc487 /lib/lz4hc.h | |
parent | 42eb47d42f041054140b8e08ffc6ba85e9f092f2 (diff) | |
download | lz4-0ac3c74de1b6de584c361f3e9485dde35f10c756.zip lz4-0ac3c74de1b6de584c361f3e9485dde35f10c756.tar.gz lz4-0ac3c74de1b6de584c361f3e9485dde35f10c756.tar.bz2 |
review: fix findings
* replace assert with test for LZ4F_uncompressedUpdate
* update documentation to incldue correct docstring
* remove unecessary entry point
* remove compress_linked_block_mode from fuzzing test
Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
Diffstat (limited to 'lib/lz4hc.h')
-rw-r--r-- | lib/lz4hc.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/lz4hc.h b/lib/lz4hc.h index 3b31624..f4afc9b 100644 --- a/lib/lz4hc.h +++ b/lib/lz4hc.h @@ -405,18 +405,6 @@ LZ4LIB_STATIC_API void LZ4_attach_HC_dictionary( LZ4_streamHC_t *working_stream, const LZ4_streamHC_t *dictionary_stream); -/*! LZ4_getDictHCSize(): - * Get the size of the dictionary. This can be used for adding data without - * compression to the LZ4 archive. If linked blocked mode is used the memory - * of the dictionary is kept free. - * This way uncompressed data does not influence the effectiveness of the - * dictionary. - * @param LZ4_dict Pointer to the dictionary to get the size of. - * @param dictSize The maximum dictionary size. (Normally 64 KB). - * @return The size of the dictionary. - */ -LZ4LIB_STATIC_API int LZ4_getDictHCSize(const LZ4_streamHC_t* LZ4_streamHCPtr, int dictSize); - #if defined (__cplusplus) } #endif |