Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech> Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/14
9 lines
168 B
C
9 lines
168 B
C
#include <libdeflate.h>
|
|
|
|
int main () {
|
|
struct libdeflate_compressor *c;
|
|
c = libdeflate_alloc_compressor(12);
|
|
libdeflate_free_compressor(c);
|
|
return 0;
|
|
}
|