Files
easy7zip/C/lizard/AdjustLiz.sh
Tino Reichardt b2d7bd30d7 Update Lizard - use internal HUF and FSE entropy
- AdjustLiz.sh fixes some double defines with zstd of lizard
- lizard uses it's own entropy lib again
- this will fix #302

Signed-off-by: Tino Reichardt <milky-7zip@mcmilk.de>
2023-02-27 14:43:39 +01:00

37 lines
723 B
Bash
Executable File

#!/bin/bash
# /TR 2023-02-24
function repl() {
#sed -e "s|LIZ_||g" -i *.c *.h
sed -e "s|$1|LIZ_${1}|g" -i *.c *.h
}
repl HUF_readStats
repl HUF_getErrorName
repl HUF_isError
repl FSE_readNCount
repl FSE_getErrorName
repl FSE_isError
repl FSE_versionNumber
repl FSE_compressBound
repl FSE_compress_usingCTable
repl FSE_buildCTable_rle
repl FSE_normalizeCount
repl FSE_optimalTableLog
repl FSE_writeNCount
repl FSE_NCountWriteBound
repl FSE_buildCTable_wksp
repl HUF_optimalTableLog
repl HUF_compress4X_usingCTable
repl HUF_compress1X_usingCTable
repl HUF_compressBound already
repl HUF_buildCTable_wksp
repl HUF_readCTable
repl HUF_decompress4X_usingDTable
repl HUF_decompress1X_usingDTable
repl HUF_selectDecoder