Hello, On 23/11/2018 19:37, Dmitry Eremin-Solenikov wrote: > I started working on compression api implementation. Unfortunately old > code heavily uses memory from heap, so fixing it will take some time.
Related question: zlib uses malloc-like callback to allocate its internal state. I'm considering imporing miniz library (single source file public domain zlib/deflate implementation) and modifying it so that it does not use alloc/free, but has all the state in the share structure. What do you think? -- With best wishes Dmitry
