LZVN
LZVN copied to clipboard
C-Style conversion of lzvn_decode
Hi, Have you ever considered making this code cross-platform by hiding the kernel-related code behind #ifdefs? I'd be interested in looking into that, but only if there's a real interest...
It looks like this implementation will not compress data < 7 bytes. That's not a problem in itself, but does anyone know how Apple's HFS/APFS compression handles the case where...
This introduces a number of changes aiming to make lzvn available on platforms other than the Mac OS: - make Mac-specific code conditional behind #ifdefs - add a generic-Unix Makefile...
Im asking for a reverse process to extraction, is it possible?
typo
In case LZVN_7, ``` compBufferPointer = length; compBufferPointer -= negativeOffset; // sub %r12,%r8 if (compBufferPointer < negativeOffset) // jb Llzvn_exit { return 0; } ``` The condition should probably be...