mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
17 lines
482 B
Plaintext
17 lines
482 B
Plaintext
/**
|
|
* @defgroup pkg_uzlib uzlib
|
|
* @ingroup pkg
|
|
* @ingroup sys_compression
|
|
* @brief Deflate/Zlib-compatible LZ77 compression/decompression library
|
|
*
|
|
* @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
|
|
*
|
|
* # License
|
|
*
|
|
* Licensed under zlib.
|
|
*
|
|
* @see https://github.com/pfalcon/uzlib
|
|
*/
|