2021-05-08 15:19:54 +02:00
|
|
|
/**
|
|
|
|
* @defgroup pkg_uzlib uzlib
|
|
|
|
* @ingroup pkg
|
2023-02-27 15:06:58 +01:00
|
|
|
* @ingroup sys_compression
|
2021-05-08 15:19:54 +02:00
|
|
|
* @brief Deflate/Zlib-compatible LZ77 compression/decompression library
|
|
|
|
*
|
2024-01-24 11:14:23 +01:00
|
|
|
* @warning During compression, uzlib allocates memory on the heap without freeing it.
|
|
|
|
* Do not use this package in production code!
|
|
|
|
* See https://github.com/pfalcon/uzlib/issues/41#issuecomment-1907807048
|
|
|
|
*
|
2021-05-08 15:19:54 +02:00
|
|
|
* # License
|
|
|
|
*
|
|
|
|
* Licensed under zlib.
|
|
|
|
*
|
|
|
|
* @see https://github.com/pfalcon/uzlib
|
|
|
|
*/
|