/* * MVCOMP, a simple yet somewhat effective compression algorithm * Copyright (C) 2024 Mateusz Viste * * MIT license */ #ifndef MVCOMP /* unpacks an MVCOMP-compressed stream of len bytes from fd. returns 0 on success. */ int mvcomp_depack(unsigned char *dst, FILE *fd, unsigned short complen); #endif